Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:max_depth

166     backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
222 uptr max_depth;
227 CHECK_LT(arg->stack->size, arg->max_depth);
230 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
234 void StackTrace::SlowUnwindStack(uptr pc, uptr max_depth) {
235 CHECK_GE(max_depth, 2);
237 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
249 uptr max_depth) {
250 CHECK_GE(max_depth, 2);
252 SlowUnwindStack(pc, max_depth);
262 /* ignore_depth */ 0, max_depth);