Searched refs:LRUHandle (Results 1 – 1 of 1) sorted by relevance
55 struct LRUHandle { struct58 LRUHandle* next_hash; argument59 LRUHandle* next; argument60 LRUHandle* prev; argument87 LRUHandle* Lookup(const Slice& key, uint32_t hash) { in Lookup()91 LRUHandle* Insert(LRUHandle* h) { in Insert()92 LRUHandle** ptr = FindPointer(h->key(), h->hash); in Insert()93 LRUHandle* old = *ptr; in Insert()107 LRUHandle* Remove(const Slice& key, uint32_t hash) { in Remove()108 LRUHandle** ptr = FindPointer(key, hash); in Remove()[all …]