HomeSort by relevance Sort by last modified time
    Searched refs:block_cache (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/util/
options.cc 21 block_cache(NULL),
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
options.h 98 Cache* block_cache; member in struct:leveldb::Options
  /external/chromium_org/third_party/leveldatabase/src/table/
table.cc 75 rep->cache_id = (options.block_cache ? options.block_cache->NewId() : 0);
158 Cache* block_cache = table->rep_->options.block_cache; local
170 if (block_cache != NULL) {
175 cache_handle = block_cache->Lookup(key);
177 block = reinterpret_cast<Block*>(block_cache->Value(cache_handle));
183 cache_handle = block_cache->Insert(
202 iter->RegisterCleanup(&ReleaseBlock, block_cache, cache_handle);
  /external/chromium_org/third_party/leveldatabase/src/db/
repair.cc 54 owns_cache_(options_.block_cache != options.block_cache),
66 delete options_.block_cache;
db_impl.cc 110 if (result.block_cache == NULL) {
111 result.block_cache = NewLRUCache(8 << 20);
123 owns_cache_(options_.block_cache != options.block_cache),
173 delete options_.block_cache;
    [all...]
corruption_test.cc 58 opt.block_cache = tiny_cache_;
c.cc 438 opt->rep.block_cache = c->rep;
db_bench.cc 694 options.block_cache = cache_;
db_test.cc     [all...]

Completed in 195 milliseconds