Searched refs:StackFrameStream (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackFrameStream.java29 /** <P> StackFrameStream iterates through the frames of a thread
38 for(StackFrameStream fst = new StackFrameStream(thread); !fst.isDone(); fst.next()) {
44 public class StackFrameStream { class
49 /** Equivalent to StackFrameStream(thread, true) */
50 public StackFrameStream(JavaThread thread) { method in class:StackFrameStream
54 public StackFrameStream(JavaThread thread, boolean update) { method in class:StackFrameStream
H A DJavaThread.java357 for(StackFrameStream fst = new StackFrameStream(this); !fst.isDone(); fst.next()) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.cpp177 for (StackFrameStream sfs(thread); !sfs.is_done(); sfs.next()) {
227 for (StackFrameStream sfs(thread); !sfs.is_done() && !found; sfs.next()) {
254 StackFrameStream sfs(thread);
H A Dframe.hpp535 // StackFrameStream iterates through the frames of a thread starting from
542 // for(StackFrameStream fst(thread); !fst.is_done(); fst.next()) {
546 class StackFrameStream : public StackObj { class in inherits:StackObj
552 StackFrameStream(JavaThread *thread, bool update = true);
H A Dvm_operations.cpp158 for(StackFrameStream fst(thread, UseBiasedLocking); !fst.is_done(); fst.next()) {
H A Dthread.cpp2570 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
2582 StackFrameStream fst(this, UseBiasedLocking);
2632 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
2646 StackFrameStream fst(this, UseBiasedLocking);
2732 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
2773 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
3065 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
3118 for(StackFrameStream fst(this, false); !fst.is_done(); fst.next()) {
H A Dframe.cpp1410 // StackFrameStream implementation
1412 StackFrameStream::StackFrameStream(JavaThread *thread, bool update) : _reg_map(thread, update) { function in class:StackFrameStream
H A Ddeoptimization.cpp1069 StackFrameStream sfs(thread, true);
1106 StackFrameStream sfs(jt, true);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DReversePtrsAnalysis.java298 for (StackFrameStream fst = new StackFrameStream(thread); !fst.isDone(); fst.next()) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp262 // StackFrameStream uses the frame anchor, which may not have
275 StackFrameStream sfs(jt);
296 for(StackFrameStream sfs(jt); !sfs.is_done(); sfs.next()) {
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp1380 for (StackFrameStream sfs(thread); !sfs.is_done(); sfs.next()) {

Completed in 89 milliseconds