| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_unwind_fuchsia.cpp | 28 u32 max_depth; member 33 CHECK_LT(arg->stack->size, arg->max_depth); in Unwind_Trace() 38 return (arg->stack->size == arg->max_depth ? _URC_NORMAL_STOP in Unwind_Trace() 42 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { in UnwindSlow() argument 43 CHECK_GE(max_depth, 2); in UnwindSlow() 45 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; in UnwindSlow() 57 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { in UnwindSlow() argument 59 CHECK_GE(max_depth, 2); in UnwindSlow()
|
| H A D | sanitizer_unwind_linux_libcdep.cpp | 45 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth); 75 u32 max_depth; member 80 CHECK_LT(arg->stack->size, arg->max_depth); in Unwind_Trace() 88 if (arg->stack->size == arg->max_depth) return UNWIND_STOP; in Unwind_Trace() 126 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { in UnwindSlow() argument 127 CHECK_GE(max_depth, 2); in UnwindSlow() 129 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; in UnwindSlow() 145 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { in UnwindSlow() argument 147 CHECK_GE(max_depth, 2); in UnwindSlow() 149 UnwindSlow(pc, max_depth); in UnwindSlow() [all …]
|
| H A D | sanitizer_stacktrace.h | 121 u32 max_depth = kStackTraceMax) { 122 top_frame_bp = (max_depth > 0) ? bp : 0; 124 if (max_depth <= 1) { 125 if (max_depth == 1) 127 size = max_depth; 130 UnwindImpl(pc, bp, context, request_fast, max_depth); 133 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top, 144 u32 max_depth); 148 u32 max_depth); 149 void UnwindSlow(uptr pc, u32 max_depth); [all …]
|
| H A D | sanitizer_unwind_win.cpp | 27 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { in UnwindSlow() argument 28 CHECK_GE(max_depth, 2); in UnwindSlow() 32 size = CaptureStackBackTrace(1, Min(max_depth, kStackTraceMax), in UnwindSlow() 50 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { in UnwindSlow() argument 52 CHECK_GE(max_depth, 2); in UnwindSlow() 84 size < Min(max_depth, kStackTraceMax)) { in UnwindSlow()
|
| H A D | sanitizer_stacktrace_libcdep.cpp | 137 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, in Unwind() argument 142 top_frame_bp = (max_depth > 0) ? bp : 0; in Unwind() 144 if (max_depth == 0) { in Unwind() 148 if (max_depth == 1) { in Unwind() 156 UnwindSlow(pc, context, max_depth); in Unwind() 158 UnwindSlow(pc, max_depth); in Unwind() 161 if (size > 2 || size >= max_depth) in Unwind() 167 UnwindFast(pc, bp, stack_top, stack_bottom, max_depth); in Unwind()
|
| H A D | sanitizer_stacktrace_sparc.cpp | 29 uptr stack_bottom, u32 max_depth) { in UnwindFast() argument 31 CHECK_GE(max_depth, 2); in UnwindFast() 60 size < max_depth) { in UnwindFast()
|
| H A D | sanitizer_stacktrace.cpp | 98 uptr stack_bottom, u32 max_depth) { in UnwindFast() argument 100 CHECK_GE(max_depth, 2); in UnwindFast() 112 size < max_depth) { in UnwindFast()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_stack.cpp | 34 u32 max_depth) { in UnwindImpl() argument 43 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), in UnwindImpl() 48 Unwind(max_depth, pc, bp, context, 0, 0, false); in UnwindImpl()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionGroupValueObjectDisplay.cpp | 103 if (option_arg.getAsInteger(0, max_depth)) { in SetOptionValue() 104 max_depth = UINT32_MAX; in SetOptionValue() 167 max_depth = UINT32_MAX; in OptionParsingStarting() 181 max_depth = std::get<uint32_t>(max_depth_config); in OptionParsingStarting() 199 options.SetMaximumDepth(max_depth, max_depth_is_default) in GetAsDumpOptions()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_stack.cpp | 57 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument 69 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), in UnwindImpl() 77 Unwind(max_depth, pc, bp, context, t ? t->stack_top() : 0, in UnwindImpl()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/ |
| H A D | backtrace_sanitizer_common.cpp | 24 u32 max_depth) { in UnwindImpl() argument 26 return Unwind(max_depth, pc, 0, context, 0, 0, false); in UnwindImpl() 32 return Unwind(max_depth, pc, bp, context, top, bottom, request_fast); in UnwindImpl()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag_standalone.cpp | 20 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument 25 Unwind(max_depth, pc, bp, context, top, bottom, fast); in UnwindImpl()
|
| H A D | ubsan_signals_standalone.cpp | 46 void ubsan_GetStackTrace(BufferedStackTrace *stack, uptr max_depth,
|
| H A D | ubsan_diag.cpp | 35 void ubsan_GetStackTrace(BufferedStackTrace *stack, uptr max_depth, uptr pc, in ubsan_GetStackTrace() argument 41 stack->Unwind(max_depth, pc, bp, context, top, bottom, fast); in ubsan_GetStackTrace()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionGroupValueObjectDisplay.h | 34 flat_output || use_objc || max_depth != UINT32_MAX || in AnyOptionWasSet() 50 uint32_t max_depth; variable
|
| /freebsd-14.2/contrib/ntp/libntp/lib/isc/ |
| H A D | backtrace.c | 93 int max_depth; member 106 if (arg->count == arg->max_depth) in btcallback() 122 arg.max_depth = maxaddrs; in isc_backtrace_gettrace()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_stack_trace.cpp | 50 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument 55 Unwind(max_depth, pc, bp, context, top, bottom, fast); in UnwindImpl()
|
| /freebsd-14.2/contrib/unbound/edns-subnet/ |
| H A D | addrtree.h | 76 addrlen_t max_depth; member 143 addrtree_create(addrlen_t max_depth, void (*delfunc)(void *, void *),
|
| H A D | addrtree.c | 122 addrtree_create(addrlen_t max_depth, void (*delfunc)(void *, void *), in addrtree_create() argument 139 tree->max_depth = max_depth; in addrtree_create() 374 if (tree->max_depth < scope) scope = tree->max_depth; in addrtree_insert()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan.cpp | 36 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument 46 Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast); in UnwindImpl()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan.cpp | 327 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument 333 return Unwind(max_depth, pc, bp, context, t ? t->stack_top() : 0, in UnwindImpl() 337 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), true); in UnwindImpl() 339 Unwind(max_depth, pc, 0, context, 0, 0, false); in UnwindImpl()
|
| /freebsd-14.2/sys/dev/bce/ |
| H A D | if_bce.c | 10131 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10140 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10149 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10158 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10167 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10176 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10185 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10194 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10203 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10212 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() [all …]
|
| /freebsd-14.2/crypto/heimdal/lib/hx509/ |
| H A D | cert.c | 63 unsigned int max_depth; member 406 c->max_depth = HX509_VERIFY_MAX_DEPTH; in hx509_verify_init_ctx() 510 hx509_verify_set_max_depth(hx509_verify_ctx ctx, unsigned int max_depth) in hx509_verify_set_max_depth() argument 512 ctx->max_depth = max_depth; in hx509_verify_set_max_depth() 1239 unsigned int max_depth, in _hx509_calculate_path() argument 1247 if (max_depth == 0) in _hx509_calculate_path() 1248 max_depth = HX509_VERIFY_MAX_DEPTH; in _hx509_calculate_path() 1269 if (path->len > max_depth) { in _hx509_calculate_path() 2016 anchors, ctx->max_depth, in hx509_verify_path()
|
| /freebsd-14.2/contrib/libarchive/libarchive/ |
| H A D | archive_write_set_format_iso9660.c | 732 int max_depth; member 1072 iso9660->primary.max_depth = 0; in archive_write_set_format_iso9660() 1076 iso9660->joliet.max_depth = 0; in archive_write_set_format_iso9660() 2130 for (i = 0; i < iso9660->primary.max_depth; i++) in iso9660_free() 2136 for (i = 0; i < iso9660->joliet.max_depth; i++) in iso9660_free() 4207 for (depth = 0; depth < vdd->max_depth; depth++) { in calculate_path_table_size() 5482 depth + 2 < iso9660->primary.max_depth) || in isoent_setup_file_location() 6586 depth + 1 < vdd->max_depth) { in isoent_traverse_tree() 6960 int max_depth) in isoent_alloc_path_table() argument 6964 vdd->max_depth = max_depth; in isoent_alloc_path_table() [all …]
|
| /freebsd-14.2/sys/dev/acpica/ |
| H A D | acpi_if.m | 173 # int max_depth: number of levels to traverse (i.e., 1 means just the 185 int max_depth;
|