Lines Matching refs:line
68 unsigned line;
124 debug_malloc(const char *file, unsigned line, const char *function,
133 file, line, function,
140 hdr->line = line;
164 debug_free(const char *file, unsigned line, const char *function,
176 file, line, function,
185 hdr->file, hdr->line, hdr->function,
195 /* Save file/line where freed */
197 hdr->line = line;
212 debug_calloc(const char *file, unsigned line, const char *function,
215 void *ptr = debug_malloc( file, line, function, count * size );
222 debug_realloc(const char *file, unsigned line, const char *function,
230 return debug_malloc( file, line, function, new_size );
233 debug_free( file, line, function, old_ptr );
240 file, line, function,
249 old_hdr->file, old_hdr->line, old_hdr->function,
258 file, line, function,
264 new_hdr->line = old_hdr->line;
319 hdr->file, hdr->line, hdr->function,
327 hdr->file, hdr->line, hdr->function,
337 hdr->file, hdr->line, hdr->function,
392 hdr->file, hdr->line, hdr->function, ptr);
398 hdr->file, hdr->line, hdr->function, ptr);
426 hdr->file, hdr->line, hdr->function, ptr);
432 hdr->file, hdr->line, hdr->function, ptr);
444 debug_printf("Block was freed at %s:%d\n", hdr->file, hdr->line);