Searched refs:s_allocation_list (Results 1 – 2 of 2) sorted by relevance
77 s_allocation_list[s_allocation_index].mem_ptr = mem_ptr; in memalign()78 s_allocation_list[s_allocation_index].mem_size = size; in memalign()107 s_allocation_list[s_allocation_index].mem_ptr = mem_ptr; in malloc()108 s_allocation_list[s_allocation_index].mem_size = size; in malloc()119 if (ptr == s_allocation_list[i].mem_ptr) { in free()121 memset(&s_allocation_list[i], 0, in free()149 s_allocation_list[s_allocation_index].mem_ptr = mem_ptr; in calloc()150 s_allocation_list[s_allocation_index].mem_size = nitems * size; in calloc()158 if (s_allocation_list[i].mem_ptr) { in exit_vulnerable_if_memory_leak_detected()159 real_free(s_allocation_list[i].mem_ptr); in exit_vulnerable_if_memory_leak_detected()[all …]
37 static allocated_memory_struct s_allocation_list[MAX_ENTRIES] = { { 0, 0 } }; variable