Lines Matching refs:xmalloc_table
168 static hashTable *xmalloc_table = NULL; variable
173 if (xmalloc_table == NULL) in xmalloc_init()
175 xmalloc_table = hash_table_new(); in xmalloc_init()
182 assert(xmalloc_table != NULL); in xmalloc_init()
183 assert(xmalloc_table->table != NULL); in xmalloc_init()
211 item = xmalloc_table->table[i]; in xmalloc_dump_leaks()
267 hash_table_add(xmalloc_table, ptr, (int)size, file, line, func); in xmalloc_impl()
299 hash_table_add(xmalloc_table, ptr, (int)(nmemb * size), file, line, func); in xcalloc_impl()
312 hash_table_del(xmalloc_table, ptr); in xfree_impl()
343 hash_table_del(xmalloc_table, ptr); in xrealloc_impl()
344 hash_table_add(xmalloc_table, new_ptr, (int)new_size, file, line, func); in xrealloc_impl()