Searched refs:new_hdr (Results 1 – 1 of 1) sorted by relevance
225 struct debug_memory_header *old_hdr, *new_hdr; in debug_realloc() local255 new_hdr = os_malloc(sizeof(*new_hdr) + new_size + sizeof(*new_ftr)); in debug_realloc()256 if (!new_hdr) { in debug_realloc()262 new_hdr->no = old_hdr->no; in debug_realloc()263 new_hdr->file = old_hdr->file; in debug_realloc()264 new_hdr->line = old_hdr->line; in debug_realloc()265 new_hdr->function = old_hdr->function; in debug_realloc()266 new_hdr->size = new_size; in debug_realloc()267 new_hdr->magic = DEBUG_MEMORY_MAGIC; in debug_realloc()268 new_hdr->tag = 0; in debug_realloc()[all …]