STACK_PRINT_SIZE  219 src/utils/alloc.c 	void *stack[STACK_PRINT_SIZE];
STACK_PRINT_SIZE  231 src/utils/alloc.c 	frames = CaptureStackBackTrace(STACK_FIRST_IDX, STACK_PRINT_SIZE, stack, NULL);
STACK_PRINT_SIZE  241 src/utils/alloc.c 		if (bt_idx + bt_len > STACK_PRINT_SIZE*SYMBOL_MAX_SIZE) {
STACK_PRINT_SIZE  251 src/utils/alloc.c 	assert(bt_idx < STACK_PRINT_SIZE*SYMBOL_MAX_SIZE);
STACK_PRINT_SIZE  264 src/utils/alloc.c 	void *stack[STACK_PRINT_SIZE+STACK_FIRST_IDX];
STACK_PRINT_SIZE  267 src/utils/alloc.c 	size = backtrace(stack, STACK_PRINT_SIZE+STACK_FIRST_IDX);
STACK_PRINT_SIZE  274 src/utils/alloc.c 		if (bt_idx + bt_len > STACK_PRINT_SIZE*SYMBOL_MAX_SIZE) {
STACK_PRINT_SIZE  285 src/utils/alloc.c 	assert(bt_idx < STACK_PRINT_SIZE*SYMBOL_MAX_SIZE);
STACK_PRINT_SIZE  507 src/utils/alloc.c         element->backtrace_stack = MALLOC(sizeof(char) * STACK_PRINT_SIZE * SYMBOL_MAX_SIZE);