gf_memory_log     176 src/utils/alloc.c static void gf_memory_log(unsigned int level, const char *fmt, ...);
gf_memory_log     242 src/utils/alloc.c 			gf_memory_log(GF_MEMORY_WARNING, "[MemoryInfo] Not enough space to hold backtrace - truncating\n");
gf_memory_log     275 src/utils/alloc.c 			gf_memory_log(GF_MEMORY_WARNING, "[MemoryInfo] Not enough space to hold backtrace - truncating\n");
gf_memory_log     324 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_ERROR, "[MemTracker] malloc() has returned a NULL pointer\n");
gf_memory_log     329 src/utils/alloc.c 	gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] malloc %3d bytes at %p in:\n", size, ptr);
gf_memory_log     330 src/utils/alloc.c 	gf_memory_log(GF_MEMORY_DEBUG, "             file %s at line %d\n" , filename, line);
gf_memory_log     339 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_ERROR, "[MemTracker] calloc() has returned a NULL pointer\n");
gf_memory_log     344 src/utils/alloc.c 	gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] calloc %3d bytes at %p in:\n", ptr, size);
gf_memory_log     345 src/utils/alloc.c 	gf_memory_log(GF_MEMORY_DEBUG, "             file %s at line %d\n" , filename, line);
gf_memory_log     353 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] free   %3d bytes at %p in:\n", size_prev, ptr);
gf_memory_log     354 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_DEBUG, "             file %s at line %d\n" , filename, line);
gf_memory_log     364 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] realloc() from a null pointer: calling malloc() instead\n");
gf_memory_log     369 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] realloc() with a null size: calling free() instead\n");
gf_memory_log     377 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_ERROR, "[MemTracker] realloc() has returned a NULL pointer\n");
gf_memory_log     383 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] realloc %3d (instead of %3d) bytes at %p\n", size, size_prev, ptr_g);
gf_memory_log     384 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_DEBUG, "             file %s at line %d\n" , filename, line);
gf_memory_log     498 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_ERROR, ("[Mem] Fail to register stack for allocation\n"));
gf_memory_log     509 src/utils/alloc.c 			gf_memory_log(GF_MEMORY_WARNING, ("[Mem] Fail to register backtrace of allocation\n"));
gf_memory_log     698 src/utils/alloc.c         gf_memory_log(log_level, "file %s at line %d\n%s\n", element->filename, element->line, element->backtrace_stack);
gf_memory_log     702 src/utils/alloc.c         gf_memory_log(log_level, "file %s at line %d\n", element->filename, element->line);
gf_memory_log     726 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_ERROR, "[MemTracker] the block %p was already freed in:\n", ptr);
gf_memory_log     757 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_ERROR, "[MemTracker] trying to free a never allocated block (%p)\n", ptr);
gf_memory_log     771 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_ERROR, "[MemTracker] the block %p trying to be deleted in:\n", ptr);
gf_memory_log     772 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_ERROR, "             file %s at line %d\n", filename, line);
gf_memory_log     773 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_ERROR, "             was already freed in:\n");
gf_memory_log     796 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_DEBUG, "[MemTracker] the allocated-blocks-list is empty: the freed-blocks-list will be emptied too.\n");
gf_memory_log     843 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_INFO, "[MemTracker] gf_memory_print(): the memory tracker is not initialized.\n");
gf_memory_log     848 src/utils/alloc.c 		gf_memory_log(GF_MEMORY_INFO, "\n[MemTracker] Printing the current state of allocations (%d open file handles) :\n", gf_file_handles_count());
gf_memory_log     866 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_INFO, "[MemTracker] Memory Block %p (size %d) allocated in:\n", curr_element->ptr, curr_element->size);
gf_memory_log     868 src/utils/alloc.c 				gf_memory_log(GF_MEMORY_INFO, "             string dump: %s\n", szVal);