Home | History | Annotate | Download | only in art

Lines Matching refs:thr

24     public final Thread thr;
29 public StackFrameData(Thread thr, Executable e, long loc, int depth) {
30 this.thr = thr;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
39 this.thr,
46 public static native int GetStackDepth(Thread thr);
48 private static native StackFrameData[] nativeGetStackTrace(Thread thr);
50 public static StackFrameData[] GetStackTrace(Thread thr) {
56 !thr.equals(Thread.currentThread()) &&
57 !Suspension.isSuspended(thr);
59 Suspension.suspend(thr);
61 StackFrameData[] out = nativeGetStackTrace(thr);
63 Suspension.resume(thr);