Lines Matching defs:freed
52 * Set to 1 to enable checking of freed blocks of memory.
53 * Basically, don't really deallocate freed memory; keep it in the list
54 * but mark it as freed and do extra checking in debug_memory_check().
75 boolean freed; /**< Is this a freed block? */
146 hdr->freed = FALSE;
192 assert(!hdr->freed);
193 /* Mark the block as freed but don't really free it */
194 hdr->freed = TRUE;
195 /* Save file/line where freed */
198 /* set freed memory to special value */
270 new_hdr->freed = FALSE;
326 debug_printf("%s:%u:%s: %lu bytes at %p not freed\n",
437 /* If this block is marked as freed, check that it hasn't been touched */
438 if (hdr->freed) {
444 debug_printf("Block was freed at %s:%d\n", hdr->file, hdr->line);