Searched refs:frames (Results 1 - 5 of 5) sorted by relevance

/art/tools/ahat/src/
H A DAhatSnapshot.java116 StackFrame[] frames = getStackFrames(stack);
117 if (frames != null && frames.length > 0) {
118 path = Lists.reverse(Arrays.asList(frames));
200 StackFrame[] frames = getStackFrames(stack);
201 if (frames != null) {
202 List<StackFrame> path = Lists.reverse(Arrays.asList(frames));
240 // Return the list of stack frames for a stack trace.
257 StackFrame[] frames = getStackFrames(stack);
258 if (frames !
[all...]
/art/tools/dmtracedump/
H A Dcreatetesttrace.cc78 dataRecord** frames; member in struct:stack
148 callStack[ii].frames = nullptr;
186 if (callStack[threadId].frames == nullptr) {
188 callStack[threadId].frames = stk;
241 callStack[threadId].frames[indentLevel] = &records[nextRecord];
245 if (callStack[threadId].frames[indentLevel - 1] == nullptr) {
249 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord];
258 char* name = callStack[threadId].frames[indentLevel - 1]->fullName;
265 callStack[threadId].frames[indentLevel - 1]->fullName);
284 // frames tha
[all...]
/art/runtime/
H A Dstack.cc527 : StackVisitor(thread_in, nullptr, walk_kind_in), frames(0) {}
530 frames++;
534 size_t frames; member in struct:art::NumFramesVisitor
538 return visitor.frames;
702 // TODO: this seems architecture specific for the case of JNI frames.
786 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames.
842 // Skip runtime save all callee frames which are used to deliver exceptions.
/art/runtime/gc/
H A Dheap.cc4039 StackCrawlState(uintptr_t* frames, size_t max_depth, size_t skip_count) argument
4040 : frames_(frames), frame_count_(0), max_depth_(max_depth), skip_count_(skip_count) {
4066 static size_t get_backtrace(uintptr_t* frames, size_t max_depth) { argument
4067 StackCrawlState state(frames, max_depth, 0u);
4081 const size_t frames = get_backtrace(backtrace, kMaxFrames); local
4083 for (size_t i = 0; i < frames; ++i) {
/art/test/
H A DAndroid.run-test.mk425 # This test unrolls and expects managed frames, but tracing means we run the interpreter.
443 # CFI unwinding expects managed frames.
457 # CFI unwinding expects managed frames, and the test does not iterate enough to even compile. JIT

Completed in 174 milliseconds