Searched refs:stackDepth (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMonitorInfo.java45 private int stackDepth; field in class:MonitorInfo
54 * @param stackDepth the depth in the stack trace where 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
64 int stackDepth,
67 if (stackDepth >= 0 && stackFrame == null) {
68 throw new IllegalArgumentException("Parameter stackDepth is " +
69 stackDepth + " but stackFrame is null");
71 if (stackDepth < 0 && stackFrame != null) {
72 throw new IllegalArgumentException("Parameter stackDepth i
62 MonitorInfo(String className, int identityHashCode, int stackDepth, StackTraceElement stackFrame) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMonitorInfo.java60 public int stackDepth(); method in interface:MonitorInfo
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DLabel.java42 int stackDepth)
47 this.stackDepth = stackDepth;
54 int stackDepth; field in class:Label.PatchInfo
64 int stackDepth)
66 patches.add(new PatchInfo(asm, instrBCI, patchBCI, stackDepth));
75 patch.asm.setStack(patch.stackDepth);
39 PatchInfo(ClassFileAssembler asm, short instrBCI, short patchBCI, int stackDepth) argument
61 add(ClassFileAssembler asm, short instrBCI, short patchBCI, int stackDepth) argument
/openjdk7/jdk/test/com/sun/jdi/
H A DMonitorFrameInfo.java128 System.out.println("Monitor obj " + mon.monitor() + "depth =" +mon.stackDepth());
129 if (mon.stackDepth() != expectedDepth[j]) {
142 System.out.println("*** Saved Monitor obj " + mon.monitor() + "depth =" +mon.stackDepth());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMonitorInfoImpl.java62 public int stackDepth() { method in class:MonitorInfoImpl
H A DThreadReferenceImpl.java284 List stackDepth = new ArrayList(); // List<int>
337 stackDepth.add(new Integer(depth));
345 Iterator stk = stackDepth.iterator();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMonitorInfoImpl.java80 public int stackDepth() { method in class:MonitorInfoImpl
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java816 int stackDepth; field in class:MethodGen.BranchTarget
818 BranchTarget(InstructionHandle target, int stackDepth) { argument
820 this.stackDepth = stackDepth;
828 public void push(InstructionHandle target, int stackDepth) { argument
832 branchTargets.push(visit(target, stackDepth));
844 private final BranchTarget visit(InstructionHandle target, int stackDepth) { argument
845 BranchTarget bt = new BranchTarget(target, stackDepth);
875 int stackDepth = 0, maxStackDepth = 0;
883 stackDepth
[all...]

Completed in 48 milliseconds