Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:max_depth

43     backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
99 u32 max_depth;
104 CHECK_LT(arg->stack->size, arg->max_depth);
107 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
111 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) {
112 CHECK_GE(max_depth, 2);
114 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
131 u32 max_depth) {
132 CHECK_GE(max_depth, 2);
134 SlowUnwindStack(pc, max_depth);
144 /* ignore_depth */ 0, max_depth);