Lines Matching full:allocation
46 void *allocation; member
66 entry->allocation = malloc(size); in tracking_malloc()
67 if (entry->allocation == NULL) { in tracking_malloc()
83 return entry->allocation; in tracking_malloc()
91 if (entry->allocation == ptr) { in find_allocation()
110 /* This is the relevant allocation. Unlink it */ in tracking_free()
141 /* Find the allocation entry for this memory */ in tracking_realloc()
150 entry->allocation = realloc(ptr, size); in tracking_realloc()
151 if (entry->allocation == NULL) { in tracking_realloc()
171 entry->allocation = reallocated; in tracking_realloc()
175 return entry->allocation; in tracking_realloc()
188 entry->allocation); in tracking_report()