Home
last modified time | relevance | path

Searched refs:frames (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/lang/StackWalker/
DLocalsAndOperands.java158 public static void checkLocalValues(StackFrame... frames) { in checkLocalValues() argument
159 dumpFramesIfDebug(frames); in checkLocalValues()
161 Stream.of(frames) in checkLocalValues()
164 } catch (Exception e) { dumpFramesIfNotDebug(frames); throw e; } in checkLocalValues()
285 StackFrame[] frames = walker.walk(s -> in testLocalsKeepAlive() local
292 return frames; in testLocalsKeepAlive()
302 StackFrame[] frames = walker.walk(s -> in testLocalsKeepAliveArgs() local
309 return frames; in testLocalsKeepAliveArgs()
348 StackFrame[] frames = extendedWalker.walk(s -> in usedLong() local
353 dumpFramesIfDebug(frames); in usedLong()
[all …]
DBasic.java83 List<StackFrame> frames = new StackBuilder(16, 16).build(); in testMethodSignature() local
85 for (StackFrame f : frames) { in testMethodSignature()
128 List<StackFrame> frames = new StackBuilder(depth, limit).build(); in walk() local
130 depth, estimate, limit, frames.size()); in walk()
131 assertEquals(limit, frames.size()); in walk()
/libcore/ojluni/src/main/java/java/lang/
DStackStreamFactory.java383 frameBuffer.frames()); in beginStackWalk()
398 frameBuffer.frames()); in fetchStackFrames()
428 T[] frames) { in callStackWalk() argument
429 checkFrameType(mode, frames); in callStackWalk()
435 int endIndex = fetchStackFrames(mode, anchor, batchSize, startIndex, frames); in callStackWalk()
458 private void checkFrameType(long mode, T[] frames) { in checkFrameType() argument
459 if (frames instanceof StackFrameInfo[]) { in checkFrameType()
463 if ((mode & FILL_CLASS_REFS_ONLY) != 0 && frames instanceof Class[]) { in checkFrameType()
467 frames.getClass().getName()); in checkFrameType()
489 int startIndex, T[] frames) { in fetchStackFrames() argument
[all …]