Lines Matching refs:accessor
598 HashTable::accessor accessor; in Insert() local
599 if (table_.find(accessor, CacheKey(key, hash))) { in Insert()
600 CacheHandle* existing_handle = accessor->second; in Insert()
601 table_.erase(accessor); in Insert()
617 HashTable::accessor accessor; in Insert() local
636 HashTable::const_accessor accessor; in Lookup() local
637 if (!table_.find(accessor, CacheKey(key, hash))) { in Lookup()
640 CacheHandle* handle = accessor->second; in Lookup()
641 accessor.release(); in Lookup()
680 HashTable::accessor accessor; in EraseAndConfirm() local
682 if (table_.find(accessor, CacheKey(key, hash))) { in EraseAndConfirm()
683 CacheHandle* handle = accessor->second; in EraseAndConfirm()
684 table_.erase(accessor); in EraseAndConfirm()