Searched defs:HashEntry (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/bionic/
H A Dmalloc_debug_common.h57 struct HashEntry { struct
59 HashEntry* prev;
60 HashEntry* next;
70 HashEntry* slots[HASHTABLE_SIZE];
H A Dpthread_debug.cpp498 typedef struct HashEntry HashEntry; typedef in typeref:struct:HashEntry
499 struct HashEntry { struct
501 HashEntry* prev;
502 HashEntry* next;
508 HashEntry* slots[HASHTABLE_SIZE];
545 static void hashmap_removeEntry(HashTable* table, HashEntry* entry)
547 HashEntry* prev = entry->prev;
548 HashEntry* next = entry->next;
557 static HashEntry* hashmap_looku
[all...]

Completed in 28 milliseconds