Searched refs:MAX_ZTRACE_DEPTH (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/osfmk/kern/
H A Dzalloc.h278 * MAX_ZTRACE_DEPTH configures how deep of a stack trace is taken on each zalloc in the zone of interest. 15
285 #define MAX_ZTRACE_DEPTH 15 macro
294 uint32_t zt_depth; /* depth of stack (0 to MAX_ZTRACE_DEPTH) */
295 void* zt_stack[MAX_ZTRACE_DEPTH]; /* series of return addresses from OSBacktrace */
H A Dzalloc.c481 void *z_pc[MAX_ZTRACE_DEPTH]; /* stack trace of caller */
1666 uintptr_t zbt[MAX_ZTRACE_DEPTH]; /* used in zone leak logging and zone leak detection */
1691 numsaved = OSBacktrace((void*) zbt, MAX_ZTRACE_DEPTH);
1703 zleak_tracedepth = fastbacktrace(zbt, MAX_ZTRACE_DEPTH);
1933 for (; i < MAX_ZTRACE_DEPTH; i++)
2034 uintptr_t zbt[MAX_ZTRACE_DEPTH]; /* used for zone leak detection */
2049 zleak_tracedepth = fastbacktrace(zbt, MAX_ZTRACE_DEPTH);
2096 void *zbt[MAX_ZTRACE_DEPTH]; /* only used if zone logging is enabled via boot-args */
2107 numsaved = OSBacktrace(&zbt[0], MAX_ZTRACE_DEPTH);
2161 for (; i < MAX_ZTRACE_DEPTH;
[all...]
H A Ddebug.c617 for (i = 0; (i < top_ztrace_copy.zt_depth && i < MAX_ZTRACE_DEPTH) ; i++) {

Completed in 17 milliseconds