Searched refs:cache_handle (Results 1 – 2 of 2) sorted by relevance
160 Cache::Handle* cache_handle = NULL; in BlockReader() local175 cache_handle = block_cache->Lookup(key); in BlockReader()176 if (cache_handle != NULL) { in BlockReader()177 block = reinterpret_cast<Block*>(block_cache->Value(cache_handle)); in BlockReader()183 cache_handle = block_cache->Insert( in BlockReader()199 if (cache_handle == NULL) { in BlockReader()202 iter->RegisterCleanup(&ReleaseBlock, block_cache, cache_handle); in BlockReader()
14811 Handle<JSFunctionResultCache> cache_handle(cache); in RUNTIME_FUNCTION() local14816 cache_handle->get(JSFunctionResultCache::kFactoryIndex))); in RUNTIME_FUNCTION()14828 cache_handle->JSFunctionResultCacheVerify(); in RUNTIME_FUNCTION()14833 int finger_index = cache_handle->finger_index(); in RUNTIME_FUNCTION()14834 int size = cache_handle->size(); in RUNTIME_FUNCTION()14839 if (size < cache_handle->length()) { in RUNTIME_FUNCTION()14840 cache_handle->set_size(size + JSFunctionResultCache::kEntrySize); in RUNTIME_FUNCTION()14844 if (index == cache_handle->length()) { in RUNTIME_FUNCTION()14851 DCHECK(index < cache_handle->length()); in RUNTIME_FUNCTION()14853 cache_handle->set(index, *key_handle); in RUNTIME_FUNCTION()[all …]