Searched refs:markAt (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/test/java/lang/StackWalker/ |
D | StackWalkTest.java | 167 public void walk(int total, int markAt) { in walk() argument 172 System.out.println("Call.walk() total=" + total + ", markAt=" + markAt); in walk() 192 public void call(int total, int current, int markAt) { in call() argument 195 testCall.call(total, current+1, markAt); in call() 197 walk(total, markAt); in call() 204 public void call(int total, int current, int markAt) { in call() argument 207 testCall.call(total, current+1, markAt); in call() 209 walk(total, markAt); in call() 217 public void call(int total, int current, int markAt) { in call() argument 221 if (nexti==markAt) { in call() [all …]
|
D | MultiThreadStackWalk.java | 106 public Env(long total, long markAt, AtomicBoolean debug) { in Env() argument 112 this.checkMarkAt = total - markAt + 1; in Env() 236 default void call(Env env, Call next, int total, int current, int markAt) { in call() argument 238 next.call(env, next, total, current+1, markAt); in call() 254 public void call(Env env, Call next, int total, int current, int markAt) { in call() argument 257 next.call(env, next, total, current+1, markAt); in call() 278 public void call(Env env, Call next, int total, int current, int markAt) { in call() argument 281 Call nextObj = nexti==markAt ? marker : next; in call() 282 nextObj.call(env, next, total, nexti, markAt); in call() 289 public static Env runTest(Test test, int total, int markAt) { in runTest() argument [all …]
|