/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ |
H A D | LocationImpl.java | 35 private long codeIndex; field in class:LocationImpl 40 Method method, long codeIndex) { 44 this.codeIndex = method.isNative()? -1 : codeIndex; 54 sun.jvm.hotspot.oops.Method methodRef, long codeIndex) { 58 this.codeIndex = codeIndex; 67 (codeIndex() == other.codeIndex()) && 78 return method().hashCode() + (int)codeIndex(); 39 LocationImpl(VirtualMachine vm, Method method, long codeIndex) argument 53 LocationImpl(VirtualMachine vm, ReferenceType declaringType, sun.jvm.hotspot.oops.Method methodRef, long codeIndex) argument 109 public long codeIndex() { method in class:LocationImpl [all...] |
H A D | NonConcreteMethodImpl.java | 83 public Location locationOfCodeIndex(long codeIndex) { argument 88 long codeIndex) { 87 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument
|
H A D | ConcreteMethodImpl.java | 291 long codeIndex) { 299 if (codeIndex < firstIndex || codeIndex > lastIndex) { 310 return super.codeIndexToLineInfo(stratum, codeIndex); 325 if (current.codeIndex() > codeIndex) { 333 public Location locationOfCodeIndex(long codeIndex) { argument 341 if (codeIndex < firstIndex || codeIndex > lastIndex) { 345 return new LocationImpl(virtualMachine(), this, codeIndex); 290 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument [all...] |
H A D | MethodImpl.java | 182 long codeIndex) { 181 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument
|
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/ |
H A D | LocationImpl.java | 36 private long codeIndex; field in class:LocationImpl 41 Method method, long codeIndex) { 45 this.codeIndex = method.isNative()? -1 : codeIndex; 55 long methodRef, long codeIndex) { 59 this.codeIndex = codeIndex; 68 (codeIndex() == other.codeIndex()) && 79 return method().hashCode() + (int)codeIndex(); 40 LocationImpl(VirtualMachine vm, Method method, long codeIndex) argument 54 LocationImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long methodRef, long codeIndex) argument 111 public long codeIndex() { method in class:LocationImpl [all...] |
H A D | ConcreteMethodImpl.java | 156 public Location locationOfCodeIndex(long codeIndex) { argument 164 if (codeIndex < firstIndex || codeIndex > lastIndex) { 168 return new LocationImpl(virtualMachine(), this, codeIndex); 173 long codeIndex) { 181 if (codeIndex < firstIndex || codeIndex > lastIndex) { 192 return super.codeIndexToLineInfo(stratum, codeIndex); 207 if (current.codeIndex() > codeIndex) { 172 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument [all...] |
H A D | NonConcreteMethodImpl.java | 89 public Location locationOfCodeIndex(long codeIndex) { argument
|
H A D | PacketStream.java | 193 writeLong(location.codeIndex()); 562 long codeIndex = readLong(); 566 return new LocationImpl(vm, refType, methodRef, codeIndex);
|
H A D | MethodImpl.java | 121 long codeIndex) { 120 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument
|
H A D | EventRequestManagerImpl.java | 813 if (location.codeIndex() == -1) {
|
/openjdk7/jdk/src/share/classes/com/sun/jdi/ |
H A D | Location.java | 114 long codeIndex(); method in interface:Location
|
H A D | Method.java | 227 * {@link Location#codeIndex}. 327 Location locationOfCodeIndex(long codeIndex); argument 410 * Location object whose codeIndex is -1.
|
/openjdk7/jdk/test/com/sun/jdi/ |
H A D | LocationTest.java | 130 if (loc.codeIndex() != -1) { 131 failure("location.codeIndex() of Object.getClass() " + 133 loc.codeIndex()); 157 if (loc.codeIndex() != 0) { // implementation dependent!!! 158 failure("location.codeIndex() of LocationTarg.foo() " + 160 loc.codeIndex());
|
H A D | LineNumberInfo.java | 176 if (location.codeIndex() != codeIndices[i]) { 178 location.codeIndex() +
|
H A D | FinalizerTest.java | 138 event1.location().codeIndex() + ")"); 157 stepEvent.location().codeIndex() + ")");
|
H A D | StepTest.java | 151 stepEvent.location().codeIndex() + "), frameCount = " +
|
H A D | PopSynchronousTest.java | 165 } else if ((meth.location().codeIndex() == loc.codeIndex()) != atStart) { 166 failure("FAIL: not at expect position: " + loc.codeIndex());
|
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/ |
H A D | StackTraceTool.java | 154 long pc = loc.codeIndex();
|
H A D | CommandInterpreter.java | 800 long pc = loc.codeIndex();
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/ |
H A D | ClassWriter.java | 158 Short codeIndex = (Short) utf8ToIndex.get("Code"); 159 _codeIndex = (codeIndex != null)? codeIndex.shortValue() : 0;
|
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/ |
H A D | Commands.java | 926 pc = loc.codeIndex(); 1018 new Long (loc.codeIndex())});
|
/openjdk7/jdk/make/jpda/jdwp/ |
H A D | jdwp.spec | 1299 (long codeIndex 1303 "<code>codeIndex</code> <= current frame code index < <code>codeIndex + length</code> ") 1307 "Unsigned value used in conjunction with <code>codeIndex</code>. " 1309 "<code>codeIndex</code> <= current frame code index < <code>code index + length</code> ") 1392 (long codeIndex 1396 "<code>codeIndex</code> <= current frame code index < <code>codeIndex + length</code> ") 1402 "Unsigned value used in conjunction with <code>codeIndex</code>. " 1404 "<code>codeIndex</cod [all...] |