Home | History | Annotate | Download | only in debug

Lines Matching refs:state

36   StackCrawlState* state = static_cast<StackCrawlState*>(arg);
40 if (ip != 0 && !state->have_skipped_self) {
41 state->have_skipped_self = true;
45 state->frames[state->frame_count++] = ip;
46 if (state->frame_count >= state->max_depth)
73 StackCrawlState state(reinterpret_cast<uintptr_t*>(trace_), kMaxTraces);
74 _Unwind_Backtrace(&TraceStackFrame, &state);
75 count_ = state.frame_count;