reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
  118   void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,

References

projects/compiler-rt/lib/asan/asan_stack.cpp
   69       Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(),
   77   Unwind(max_depth, pc, bp, context, 0, 0, false);
projects/compiler-rt/lib/gwp_asan/optional/backtrace_sanitizer_common.cpp
   26     return Unwind(max_depth, pc, bp, context, 0, 0, request_fast);
   28   Unwind(max_depth, pc, 0, context, 0, 0, false);
projects/compiler-rt/lib/hwasan/hwasan.cpp
  211     return Unwind(max_depth, pc, bp, context, 0, 0, request_fast);
  214     Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), true);
  216     Unwind(max_depth, pc, 0, context, 0, 0, false);
projects/compiler-rt/lib/lsan/lsan.cpp
   47       Unwind(max_depth, pc, bp, nullptr, stack_top, stack_bottom, true);
   49       Unwind(max_depth, pc, 0, context, 0, 0, false);
projects/compiler-rt/lib/msan/msan.cpp
  309     return Unwind(max_depth, pc, bp, context, 0, 0, false);
  312     Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), true);
  314     Unwind(max_depth, pc, 0, context, 0, 0, false);
projects/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
  108     stack->Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom, true);
  110     stack->Unwind(kStackTraceMax, pc, 0, nullptr, 0, 0, false);
projects/compiler-rt/lib/tsan/dd/dd_rtl.cpp
   24   stack.Unwind(1000, 0, 0, 0, 0, 0, false);
projects/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
   59     Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
   61     Unwind(max_depth, pc, 0, context, 0, 0, false);
projects/compiler-rt/lib/ubsan/ubsan_diag.cpp
   41     stack->Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
   43     stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
projects/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
   25     Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
   27     Unwind(max_depth, pc, bp, context, 0, 0, false);