Lines Matching refs:FILE
5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
16 Stores a list of addreses, their size, and file and line they came from.
46 #include <string.h> //VXWORKS doesn't have a malloc/memory.h file,
53 #undef vpx_free //memory functions in this file
84 static void memory_tracker_check_integrity(char *file, unsigned int line);
86 char *file, unsigned int line,
131 FILE *file;
252 if (!g_logging.type && g_logging.file && g_logging.file != stderr)
255 fclose(g_logging.file);
257 g_logging.file = NULL;
268 char * file, unsigned int line)
271 file - the file addr was referenced from
272 line - the line in file addr was referenced from
273 Adds memory address addr, it's size, file and line it came from
277 char *file, unsigned int line,
280 memory_tracker_add(addr, size, file, line, padded);
332 vpx_memory_tracker_check_integrity(char* file, unsigned int line)
333 file - The file name where the check was placed
334 line - The line in file where the check was placed
339 void vpx_memory_tracker_check_integrity(char *file, unsigned int line)
343 memory_tracker_check_integrity(file, line);
355 or because a file could not be opened
368 g_logging.file = stderr;
375 if ((g_logging.file = fopen((char *)option, "w")))
457 if (g_logging.file)
459 vfprintf(g_logging.file, fmt, list);
460 fflush(g_logging.file);
499 memtrack_log("memblocks[%d].addr= 0x%.8x, memblocks[%d].size= %d, file:\n"
502 p->file, p->line);
505 memtrack_log("memblocks[%d].addr= 0x%.8x, memblocks[%d].size= %d, file: %s, line: %d\n", i,
507 p->file, p->line);
523 memory_tracker_check_integrity(char* file, unsigned int file)
524 file - the file name where the check was placed
525 line - the line in file where the check was placed
530 static void memory_tracker_check_integrity(char *file, unsigned int line)
568 " file: %s, line: %d c0:0x%x c1:0x%x\n",
569 index, i, file, line, p->addr, p->size, p->file,
583 char * file, unsigned int line)
584 Adds an address (addr), it's size, file and line number to our list.
589 char *file, unsigned int line,
605 p->file = file;