Searched defs:frameCount (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadInfo.java46 private int frameCount; field in class:ThreadInfo
60 this.frameCount = -1;
76 return frameCount;
102 if (frameCount == -1) {
105 frameCount = thread.frameCount();
122 frameCount = -1;
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadReference.java184 int frameCount() throws IncompatibleThreadStateException; method in interface:ThreadReference
213 * or equal to {@link #frameCount} or is negative.
235 * start >= {@link #frameCount}
237 * (start+length) &gt; {@link #frameCount}</pre>
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java177 public int frameCount() throws IncompatibleThreadStateException { //fixme jjh method in class:ThreadReferenceImpl
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadReferenceImpl.java71 int frameCount = -1; field in class:ThreadReferenceImpl.LocalCache
93 * frameCount() is called and comes up with 5 frames. But before
331 public int frameCount() throws IncompatibleThreadStateException { method in class:ThreadReferenceImpl
334 if (snapshot.frameCount == -1) {
335 snapshot.frameCount = JDWP.ThreadReference.FrameCount
336 .process(vm, this).frameCount;
347 return snapshot.frameCount;
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.h65 int frameCount; member in struct:Splash
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java269 private int frameCount; field in class:MethodWriter
660 ++frameCount;
1630 ++frameCount;
1654 if (frameCount == 0) {
2025 out.putInt(stackMap.length + 2).putShort(frameCount);
2421 if (frameCount > 0) {
2423 frameCount = 0;

Completed in 32 milliseconds