Searched defs:getAddressSize (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DMachineDescriptionIntelX86.java28 public long getAddressSize() { method in class:MachineDescriptionIntelX86
H A DMachineDescriptionSPARC32Bit.java28 public long getAddressSize() { method in class:MachineDescriptionSPARC32Bit
H A DMachineDescriptionAMD64.java28 public long getAddressSize() { method in class:MachineDescriptionAMD64
H A DMachineDescriptionIA64.java28 public long getAddressSize() { method in class:MachineDescriptionIA64
H A DMachineDescriptionSPARC64Bit.java28 public long getAddressSize() { method in class:MachineDescriptionSPARC64Bit
H A DMachineDescription.java36 public long getAddressSize(); method in interface:MachineDescription
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebugger.java92 public int getAddressSize(); method in interface:WindbgDebugger
H A DWindbgDebuggerLocal.java98 utils = new DebuggerUtilities(machDesc.getAddressSize(), machDesc.isBigEndian()) {
337 public int getAddressSize() { method in class:WindbgDebuggerLocal
338 return (int) machDesc.getAddressSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DTypeDataBase.java75 public long getAddressSize(); method in interface:TypeDataBase
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicTypeDataBase.java145 public long getAddressSize() { method in class:BasicTypeDataBase
146 return machDesc.getAddressSize();
230 offset -= (offset % getAddressSize());
237 offset -= getAddressSize();
298 offset2 = offset2 - (offset2 % getAddressSize()) - getAddressSize();
302 long offset3 = offset2 - getAddressSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java97 public native static int getAddressSize() ; method in class:BsdDebuggerLocal
176 utils = new DebuggerUtilities(machDesc.getAddressSize(),
349 return addr + (2 * machDesc.getAddressSize());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java95 public native static int getAddressSize() ; method in class:LinuxDebuggerLocal
174 utils = new DebuggerUtilities(machDesc.getAddressSize(),
347 return addr + (2 * machDesc.getAddressSize());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java278 if (db.getAddressSize() == 4) {
280 } else if (db.getAddressSize() == 8) {
283 throw new RuntimeException("Address size " + db.getAddressSize() + " not yet supported");
477 public long getAddressSize() { method in class:VM
478 return db.getAddressSize();

Completed in 62 milliseconds