Searched refs:xmalloc_table (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/bsd/tre/dist/lib/ |
H A D | xmalloc.c | 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() [all …]
|