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

  /external/chromium_org/third_party/leveldatabase/src/db/
builder.h 17 class TableCache;
28 TableCache* table_cache,
table_cache.h 21 class TableCache {
23 TableCache(const std::string& dbname, const Options* options, int entries);
24 ~TableCache();
table_cache.cc 32 TableCache::TableCache(const std::string& dbname,
41 TableCache::~TableCache() {
45 Status TableCache::FindTable(uint64_t file_number, uint64_t file_size,
76 Iterator* TableCache::NewIterator(const ReadOptions& options,
99 Status TableCache::Get(const ReadOptions& options,
115 void TableCache::Evict(uint64_t file_number) {
builder.cc 20 TableCache* table_cache,
db_impl.h 21 class TableCache;
123 TableCache* table_cache_;
version_set.h 34 class TableCache;
154 TableCache* table_cache,
285 TableCache* const table_cache_;
repair.cc 56 // TableCache can be small since we expect each table to be opened once.
57 table_cache_ = new TableCache(dbname_, &options_, 10);
107 TableCache* table_cache_;
version_set.cc 221 TableCache* cache = reinterpret_cast<TableCache*>(arg);
258 // Callback from TableCache::Get()
694 TableCache* table_cache,
    [all...]
db_impl.cc 140 // Reserve ten files or so for other uses and give the rest to TableCache.
142 table_cache_ = new TableCache(dbname_, &options_, table_cache_size);
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
table.h 19 class TableCache;
68 friend class TableCache;

Completed in 318 milliseconds