Lines Matching refs:AllocationEntry
48 } AllocationEntry; typedef
50 static AllocationEntry *alloc_head = NULL;
51 static AllocationEntry *alloc_tail = NULL;
53 static AllocationEntry *find_allocation(const void *ptr);
58 AllocationEntry *const entry in tracking_malloc()
59 = (AllocationEntry *)malloc(sizeof(AllocationEntry)); in tracking_malloc()
86 static AllocationEntry *
88 AllocationEntry *entry; in find_allocation()
101 AllocationEntry *entry; in tracking_free()
129 AllocationEntry *entry; in tracking_realloc()
145 entry = (AllocationEntry *)malloc(sizeof(AllocationEntry)); in tracking_realloc()
180 AllocationEntry *entry; in tracking_report()