Home
last modified time | relevance | path

Searched refs:STACK_DEPTH (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/components/heap/
Dheap_trace_standalone.c26 #define STACK_DEPTH CONFIG_HEAP_TRACING_STACK_DEPTH macro
140 for (int j = 0; j < STACK_DEPTH && rec->alloced_by[j] != 0; j++) { in heap_trace_dump()
142 (j < STACK_DEPTH - 1) ? ":" : ""); in heap_trace_dump()
145 if (mode != HEAP_TRACE_ALL || STACK_DEPTH == 0 || rec->freed_by[0] == NULL) { in heap_trace_dump()
151 for (int j = 0; j < STACK_DEPTH; j++) { in heap_trace_dump()
153 (j < STACK_DEPTH - 1) ? ":" : "\n"); in heap_trace_dump()
229 memcpy(buffer[i].freed_by, callers, sizeof(void *) * STACK_DEPTH); in record_free()
/hal_espressif-3.6.0/components/heap/include/
Dheap_trace.inc42 if (STACK_DEPTH == N) { \
60 bzero(callers, sizeof(void *) * STACK_DEPTH);
73 _Static_assert(STACK_DEPTH >= 0 && STACK_DEPTH <= 10, "CONFIG_HEAP_TRACING_STACK_DEPTH must be in r…
113 void *callers[STACK_DEPTH];
125 void *callers[STACK_DEPTH];
145 memcpy(rec.alloced_by, callers, sizeof(void *) * STACK_DEPTH);
/hal_espressif-3.6.0/components/app_trace/
Dheap_trace_tohost.c17 #define STACK_DEPTH CONFIG_HEAP_TRACING_STACK_DEPTH macro