Searched refs:StackFrame (Results 1 - 25 of 50) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DStackTrace.java47 private StackFrame[] frames;
49 public StackTrace(StackFrame[] frames) {
62 StackFrame[] f = new StackFrame[depth];
74 public StackFrame[] getFrames() {
H A DStackFrame.java45 public class StackFrame { class
61 public StackFrame(String methodName, String methodSignature, method in class:StackFrame
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadReference.java187 * Returns a List containing each {@link StackFrame} in the
193 * @return a List of {@link StackFrame} with the current frame first
198 List<StackFrame> frames() throws IncompatibleThreadStateException;
201 * Returns the {@link StackFrame} at the given index in the
209 * @return the requested {@link StackFrame}
215 StackFrame frame(int index) throws IncompatibleThreadStateException;
218 * Returns a List containing a range of {@link StackFrame} mirrors
227 * @return a List of {@link StackFrame} with the current frame first
239 List<StackFrame> frames(int start, int length)
355 * All <code>StackFrame</cod
[all...]
H A DLocalVariable.java34 * {@link StackFrame} to set and get values.
36 * @see StackFrame
116 * {@link StackFrame}.
118 * See {@link StackFrame#visibleVariables} for a complete description
121 * @param frame the StackFrame querying visibility
127 boolean isVisible(StackFrame frame);
H A DStackFrame.java34 * its call stack as methods are invoked and then return. A StackFrame
37 * StackFrame objects. The call stack can be obtained any time a thread
43 * The lifetime of a StackFrame is very limited. It is available only
46 * Any method on <code>StackFrame</code> which
47 * takes <code>StackFrame</code> as an parameter may throw
52 * Any method on <code>StackFrame</code> which
53 * takes <code>StackFrame</code> as an parameter may throw
61 public interface StackFrame extends Mirror, Locatable interface in inherits:Mirror,Locatable
110 * this StackFrame. Each variable has a range of byte code indices in which
114 * StackFrame i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DStackFrameImpl.java39 implements StackFrame, ThreadListener
130 ps = JDWP.StackFrame.ThisObject.
136 thisObject = JDWP.StackFrame.ThisObject.
209 JDWP.StackFrame.GetValues.SlotInfo[] slots =
210 new JDWP.StackFrame.GetValues.SlotInfo[count];
218 slots[i] = new JDWP.StackFrame.GetValues.SlotInfo(variable.slot(),
227 ps = JDWP.StackFrame.GetValues.enqueueCommand(vm, thread, id, slots);
233 values = JDWP.StackFrame.GetValues.waitForReply(vm, ps).values;
276 JDWP.StackFrame.SetValues.SlotInfo[] slotVals =
277 new JDWP.StackFrame
[all...]
H A DThreadReferenceImpl.java68 List<StackFrame> frames = null;
297 StackFrame frame = frame(0);
350 public List<StackFrame> frames() throws IncompatibleThreadStateException {
354 public StackFrame frame(int index) throws IncompatibleThreadStateException {
356 return (StackFrame)list.get(0);
382 public List<StackFrame> frames(int start, int length)
395 synchronized private List<StackFrame> privateFrames(int start, int length)
407 snapshot.frames = new ArrayList<StackFrame>(count);
413 StackFrame frame = new StackFrameImpl(vm, this,
531 public void popFrames(StackFrame fram
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DPopAndStepTest.java60 StackFrame frameFor(String methodName) throws Exception {
64 StackFrame frame = (StackFrame)it.next();
79 StackFrame frame = (StackFrame)it.next();
H A DFinalizerTest.java147 StackFrame frame = (StackFrame) iter.next();
171 StackFrame frame = (StackFrame) iter.next();
H A DPopAsynchronousTest.java91 StackFrame frame = event.thread().frame(0);
116 StackFrame top = mainThread.frame(0);
125 StackFrame popThis = top;
130 StackFrame frame = (StackFrame)it.next();
H A DPopAndInvokeTest.java96 StackFrame frameFor(String methodName) throws Exception {
100 StackFrame frame = (StackFrame)it.next();
H A DGetSetLocalTest.java180 void checkGetSetAllVariables(List localVars, StackFrame frame) throws Exception {
217 void printFrameVariables(StackFrame frame) throws Exception {
274 void checkSetBooleanTypes(StackFrame frame, LocalVariable lv) throws Exception {
296 void checkSetByteTypes(StackFrame frame, LocalVariable lv) throws Exception {
318 void checkSetCharTypes(StackFrame frame, LocalVariable lv) throws Exception {
340 void checkSetShortTypes(StackFrame frame, LocalVariable lv) throws Exception {
362 void checkSetIntegerTypes(StackFrame frame, LocalVariable lv) throws Exception {
384 void checkSetLongTypes(StackFrame frame, LocalVariable lv) throws Exception {
406 void checkSetFloatTypes(StackFrame frame, LocalVariable lv) throws Exception {
428 void checkSetDoubleTypes(StackFrame fram
[all...]
H A DArgumentValuesTest.java122 StackFrame frame = bpe.thread().frame(0);
151 StackFrame frame = bpe.thread().frame(0);
169 StackFrame frame = bpe.thread().frame(0);
203 StackFrame frame = bpe.thread().frame(0);
228 StackFrame frame = bpe.thread().frame(0);
H A DFramesTest.java104 StackFrame sf = (StackFrame)(fs.get(i));
H A DLaunchCommandLine.java72 StackFrame frame = bp.thread().frame(0);
H A DResumeOneThreadTest.java135 // Both threads are stopped at their bkpts. Get a StackFrame from
136 // Thread 1 then resume Thread 2 and verify that the saved StackFrame is
143 StackFrame t1sf0 = null;
152 // Ok, we have a StackFrame for thread 1. Resume just thread 2
164 StackFrame t1sf0_1 = thread1.frame(0);
H A DGetLocalVariables2Test.java94 StackFrame frame = bpe.thread().frame(1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DExceptionBean.java79 public List<StackFrame> stackTrace = new ArrayList<StackFrame>();
98 stackTrace.add(new StackFrame(f));
122 static final class StackFrame { class in class:ExceptionBean
132 StackFrame() {// for JAXB method in class:ExceptionBean.StackFrame
135 public StackFrame(StackTraceElement ste) { method in class:ExceptionBean.StackFrame
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java40 import com.sun.jdi.StackFrame;
211 List<StackFrame> getStack() throws IncompatibleThreadStateException {
220 StackFrame getCurrentFrame() throws IncompatibleThreadStateException {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DStackTraceTool.java143 StackFrame frame = (StackFrame)value;
H A DMonitorTool.java87 public StackFrame get()
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadInfo.java79 public StackFrame getFrame(int index) throws VMNotInterruptedException {
/openjdk7/jdk/src/share/back/
H A DdebugDispatch.c81 l1Array[JDWP_COMMAND_SET(StackFrame)] = (void *)StackFrame_Cmds;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DQueryHandler.java197 StackFrame[] frames = trace.getFrames();
199 StackFrame f = frames[i];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java186 public StackFrame frame(int index) throws IncompatibleThreadStateException {
188 return (StackFrame)list.get(0);
215 StackFrame myFrame = new StackFrameImpl(vm, this, myvf);
388 public void popFrames(StackFrame frame) throws IncompatibleThreadStateException {

Completed in 95 milliseconds

12