Home
last modified time | relevance | path

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

/hal_espressif-latest/components/heap/include/
Dheap_trace.inc47 callers[N] = __builtin_return_address(N+STACK_OFFSET); \
48 if (!esp_ptr_executable(callers[N]) \
49 || callers[N] == (void*) HEAP_ARCH_INVALID_PC) { \
50 callers[N] = 0; \
60 static HEAP_IRAM_ATTR __attribute__((noinline)) void get_call_stack(void **callers)
62 bzero(callers, sizeof(void *) * STACK_DEPTH);
115 void *callers[STACK_DEPTH];
116 get_call_stack(callers);
117 record_free(p, callers);
127 void *callers[STACK_DEPTH];
[all …]
/hal_espressif-latest/components/heap/
Dheap_trace_standalone.c422 static HEAP_IRAM_ATTR void record_free(void *p, void **callers) in record_free() argument
446 memcpy(r_found->freed_by, callers, sizeof(void *) * STACK_DEPTH); in record_free()
DKconfig54 Number of stack frames to save when tracing heap operation callers.