/external/chromium_org/third_party/leveldatabase/src/db/ |
repair.cc | 57 table_cache_ = new TableCache(dbname_, &options_, 10); 61 delete table_cache_; 107 TableCache* table_cache_; member in class:leveldb::__anon11695::Repairer 227 status = BuildTable(dbname_, env_, options_, table_cache_, iter, &meta); 256 return table_cache_->NewIterator(r, meta.number, meta.file_size);
|
db_impl.h | 130 // table_cache_ provides its own synchronization 131 TableCache* table_cache_; member in class:leveldb::DBImpl
|
version_set.h | 298 TableCache* const table_cache_; member in class:leveldb::VersionSet
|
version_set.cc | 236 &GetFileIterator, vset_->table_cache_, options); 244 vset_->table_cache_->NewIterator( 413 s = vset_->table_cache_->Get(options, f->number, f->file_size, 787 table_cache_(table_cache), [all...] |
db_impl.cc | 142 table_cache_ = new TableCache(dbname_, &options_, table_cache_size); 144 versions_ = new VersionSet(dbname_, &options_, table_cache_, 167 delete table_cache_; 263 table_cache_->Evict(number); 471 s = BuildTable(dbname_, env_, options_, table_cache_, iter, &meta); 817 Iterator* iter = table_cache_->NewIterator(ReadOptions(), [all...] |