Package sun.jvm.hotspot.memory

Examples of sun.jvm.hotspot.memory.MemRegion.byteSize()


    }

    public long capacity() {
        Address g1CommittedAddr = addr.addOffsetTo(g1CommittedFieldOffset);
        MemRegion g1Committed = new MemRegion(g1CommittedAddr);
        return g1Committed.byteSize();
    }

    public long used() {
        return summaryBytesUsedField.getValue(addr);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.