Searched refs:HashEntry (Results 1 - 3 of 3) sorted by path

/bionic/libc/bionic/
H A Dmalloc_debug_common.cpp122 const HashEntry* e1 = *static_cast<HashEntry* const*>(arg1);
123 const HashEntry* e2 = *static_cast<HashEntry* const*>(arg2);
191 HashEntry** list = static_cast<HashEntry**>(Malloc(malloc)(sizeof(void*) * g_hash_table.count));
196 HashEntry* entry = g_hash_table.slots[i];
223 HashEntry* entry = list[i];
H A Dmalloc_debug_common.h58 struct HashEntry { struct
60 HashEntry* prev;
61 HashEntry* next;
72 HashEntry* slots[HASHTABLE_SIZE];
H A Dmalloc_debug_leak.cpp81 HashEntry* entry;
109 static HashEntry* find_entry(HashTable* table, int slot,
111 HashEntry* entry = table->slots[slot];
130 static HashEntry* record_backtrace(uintptr_t* backtrace, size_t numEntries, size_t size) {
143 HashEntry* entry = find_entry(g_hash_table, slot, backtrace, numEntries, size);
149 entry = static_cast<HashEntry*>(g_malloc_dispatch->malloc(sizeof(HashEntry) + numEntries*sizeof(uintptr_t)));
175 static int is_valid_entry(HashEntry* entry) {
178 HashEntry* e1 = g_hash_table->slots[i];
190 static void remove_entry(HashEntry* entr
[all...]

Completed in 67 milliseconds