Searched refs:stackFrame (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMonitorInfo.java46 private StackTraceElement stackFrame; field in class:MonitorInfo
56 * @param stackFrame the stack frame that locked the object monitor.
58 * <tt>stackDepth</tt> &ge; 0 but <tt>stackFrame</tt> is <tt>null</tt>,
59 * or <tt>stackDepth</tt> &lt; 0 but <tt>stackFrame</tt> is not
65 StackTraceElement stackFrame) {
67 if (stackDepth >= 0 && stackFrame == null) {
69 stackDepth + " but stackFrame is null");
71 if (stackDepth < 0 && stackFrame != null) {
73 stackDepth + " but stackFrame is not null");
76 this.stackFrame
62 MonitorInfo(String className, int identityHashCode, int stackDepth, StackTraceElement stackFrame) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DFilterExprIteratorSimple.java92 int stackFrame,
116 vars.setStackFrame(stackFrame);
89 executeFilterExpr(int context, XPathContext xctxt, PrefixResolver prefixResolver, boolean isTopLevel, int stackFrame, Expression expr ) argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java252 * NEEDSDOC @param stackFrame
256 public void setLocalVariable(int index, XObject val, int stackFrame) argument
258 _stackFrames[index + stackFrame] = val;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java373 private FrameWrapper stackFrame; field in class:BugSpot
525 stackFrame = newFrame("Stack");
526 stackFrame.getContentPane().setLayout(new BorderLayout());
527 stackFrame.getContentPane().add(framePanel, BorderLayout.CENTER);
528 stackFrame.setResizable(true);
529 stackFrame.setClosable(false);
530 addFrame(stackFrame);
531 stackFrame.setSize(400, 200);
532 GraphicsUtilities.moveToInContainer(stackFrame.getComponent(), 0.0f, 1.0f, 0, 20);
533 stackFrame
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHSDB.java788 JInternalFrame stackFrame = new JInternalFrame("Stack Memory for " + thread.getThreadName());
789 stackFrame.getContentPane().setLayout(new BorderLayout());
790 stackFrame.setResizable(true);
791 stackFrame.setClosable(true);
792 stackFrame.setIconifiable(true);
822 stackFrame.getContentPane().add(annoMemPanel, BorderLayout.CENTER);
823 desktop.add(stackFrame);
824 GraphicsUtilities.reshapeToAspectRatio(stackFrame, 4.0f / 3.0f, 0.85f, stackFrame.getParent().getSize());
825 stackFrame
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java61 final int stackFrame = threadInfo == null? 0 : threadInfo.getCurrentFrameIndex();
82 threadInfo.setCurrentFrameIndex(stackFrame);
87 new Object []{new Integer(stackFrame)});

Completed in 43 milliseconds