Searched refs:getObjectSize (Results 1 - 25 of 47) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFile.java65 public byte getObjectSize(); method in interface:ELFFile
/openjdk7/jdk/test/java/lang/instrument/
H A DNullGetObjectSizeTest.java27 * @summary make sure getObjectSize(null) throws NullPointerException.
66 fInst.getObjectSize(null);
H A DStressGetObjectSizeApp.java54 fInst.getObjectSize(new Object()));
82 sum += inst.getObjectSize(anObject);
H A DGetObjectSizeTest.java27 * @summary round-trip test for getObjectSize (does it return, and is the result non-zero?)
80 long size = fInst.getObjectSize(o);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DArrayKlassKlass.java53 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:ArrayKlassKlass
H A DCompiledICHolderKlass.java53 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:CompiledICHolderKlass
H A DConstMethodKlass.java55 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:ConstMethodKlass
H A DConstantPoolCacheKlass.java53 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:ConstantPoolCacheKlass
H A DConstantPoolKlass.java53 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:ConstantPoolKlass
H A DInstanceKlassKlass.java56 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:InstanceKlassKlass
H A DKlassKlass.java56 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:KlassKlass
H A DMethodDataKlass.java55 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:MethodDataKlass
H A DMethodKlass.java55 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:MethodKlass
H A DObjArrayKlassKlass.java56 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:ObjArrayKlassKlass
H A DTypeArrayKlassKlass.java53 public long getObjectSize() { return alignObjectSize(headerSize); } method in class:TypeArrayKlassKlass
H A DCompiledICHolder.java69 public long getObjectSize() { method in class:CompiledICHolder
H A DInstanceMirrorKlass.java55 public long getObjectSize(Oop o) { method in class:InstanceMirrorKlass
H A DArray.java97 public long getObjectSize() { method in class:Array
H A DObjectHistogramElement.java46 size = size + obj.getObjectSize();
H A DOop.java104 public long getObjectSize() { method in class:Oop
106 // All other types should be overriding getObjectSize directly
107 return ((InstanceKlass)k).getObjectSize(this);
216 long size = getObjectSize() * 4;
H A DConstantPoolCache.java70 public long getObjectSize() { method in class:ConstantPoolCache
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DProgressiveHeapVisitor.java57 visitedSize += obj.getObjectSize();
/openjdk7/jdk/src/share/classes/java/lang/instrument/
H A DInstrumentation.java409 getObjectSize(Object objectToSize); method in interface:Instrumentation
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DPermStat.java232 return oop == null ? 0L : oop.getObjectSize();
237 return arr.getLength() != 0L ? arr.getObjectSize() : 0L;
243 size += k.getObjectSize();
247 size += cp.getObjectSize();
265 size += methods.getObjectSize();
268 size += m.getObjectSize();
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tag.c113 size = (jint)getObjectSize(klass);

Completed in 79 milliseconds

12