Searched refs:getAddressValue (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DSharedObject.java43 protected long getAddressValue(Address addr) { method in class:SharedObject
44 return dbg.getAddressValue(addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DSharedObject.java43 protected long getAddressValue(Address addr) { method in class:SharedObject
44 return dbg.getAddressValue(addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DSharedObject.java43 protected long getAddressValue(Address addr) { method in class:SharedObject
44 return dbg.getAddressValue(addr);
H A DProcCFrame.java47 return procDbg.lookup(procDbg.getAddressValue(pc));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/amd64/
H A DBsdAMD64ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/x86/
H A DBsdX86ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/amd64/
H A DLinuxAMD64ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
H A DLinuxAMD64CFrame.java44 return dbg.lookup(dbg.getAddressValue(pc()));
64 if ( dbg.getAddressValue(rbp) % ADDRESS_SIZE != 0) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/ia64/
H A DLinuxIA64ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/sparc/
H A DLinuxSPARCThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/x86/
H A DLinuxX86ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
H A DLinuxX86CFrame.java45 return dbg.lookup(dbg.getAddressValue(pc()));
65 if ( dbg.getAddressValue(ebp) % ADDRESS_SIZE != 0) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/amd64/
H A DProcAMD64ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/sparc/
H A DProcSPARCThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/x86/
H A DProcX86ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64ThreadContext.java42 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThreadContext.java42 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86ThreadContext.java42 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/amd64/
H A DWindbgAMD64ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ia64/
H A DWindbgIA64ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/x86/
H A DWindbgX86ThreadContext.java40 setRegister(index, debugger.getAddressValue(value));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DFreeChunk.java71 return dbg.getAddressValue(size);
91 long word = dbg.getAddressValue(prev);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerClient.java111 return remoteDebugger.getThreadIntegerRegisterSet(getAddressValue(addr), true);
300 public long getAddressValue(Address addr) throws DebuggerException { method in class:RemoteDebuggerClient
336 return remoteDebugger.areThreadsEqual(getAddressValue(addr1), true,
337 getAddressValue(addr2), true);
353 return remoteDebugger.areThreadsEqual(getAddressValue(addr1), true, id2, false);
361 return remoteDebugger.areThreadsEqual(id1, false, getAddressValue(addr2), true);
369 return remoteDebugger.getThreadHashCode(getAddressValue(a), true);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java107 long offset = dso? pcAsAddr.minus(addr) : getAddressValue(pcAsAddr);
155 protected abstract long getAddressValue(Address addr); method in class:DSO
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebugger.java71 public long getAddressValue(Address addr) throws DebuggerException; method in interface:Debugger

Completed in 105 milliseconds

12