Searched refs:codeIndex (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DLocationImpl.java35 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 DNonConcreteMethodImpl.java83 public Location locationOfCodeIndex(long codeIndex) { argument
88 long codeIndex) {
87 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument
H A DConcreteMethodImpl.java291 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 DMethodImpl.java182 long codeIndex) {
181 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLocationImpl.java36 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 DConcreteMethodImpl.java156 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 DNonConcreteMethodImpl.java89 public Location locationOfCodeIndex(long codeIndex) { argument
H A DPacketStream.java193 writeLong(location.codeIndex());
562 long codeIndex = readLong();
566 return new LocationImpl(vm, refType, methodRef, codeIndex);
H A DMethodImpl.java121 long codeIndex) {
120 codeIndexToLineInfo(SDE.Stratum stratum, long codeIndex) argument
H A DEventRequestManagerImpl.java813 if (location.codeIndex() == -1) {
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocation.java114 long codeIndex(); method in interface:Location
H A DMethod.java227 * {@link Location#codeIndex}.
327 Location locationOfCodeIndex(long codeIndex); argument
410 * Location object whose codeIndex is -1.
/openjdk7/jdk/test/com/sun/jdi/
H A DLocationTest.java130 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 DLineNumberInfo.java176 if (location.codeIndex() != codeIndices[i]) {
178 location.codeIndex() +
H A DFinalizerTest.java138 event1.location().codeIndex() + ")");
157 stepEvent.location().codeIndex() + ")");
H A DStepTest.java151 stepEvent.location().codeIndex() + "), frameCount = " +
H A DPopSynchronousTest.java165 } 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 DStackTraceTool.java154 long pc = loc.codeIndex();
H A DCommandInterpreter.java800 long pc = loc.codeIndex();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java158 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 DCommands.java926 pc = loc.codeIndex();
1018 new Long (loc.codeIndex())});
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec1299 (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...]

Completed in 94 milliseconds