Searched refs:NewIterator (Results 1 - 25 of 46) sorted by last modified time

12

/external/chromium_org/third_party/leveldatabase/src/db/
H A Dleveldb_main.cc148 Iterator* iter = table->NewIterator(ro);
H A Dmemtable.cc78 Iterator* MemTable::NewIterator() { function in class:leveldb::MemTable
H A Dmemtable.h51 Iterator* NewIterator();
H A Drepair.cc226 Iterator* iter = mem->NewIterator();
255 return table_cache_->NewIterator(r, meta.number, meta.file_size);
H A Dtable_cache.cc82 Iterator* TableCache::NewIterator(const ReadOptions& options, function in class:leveldb::TableCache
97 Iterator* result = table->NewIterator(options);
H A Dtable_cache.h33 Iterator* NewIterator(const ReadOptions& options,
H A Dversion_set.cc212 return cache->NewIterator(options,
230 vset_->table_cache_->NewIterator(
1125 Iterator* iter = table_cache_->NewIterator(
1226 list[num++] = table_cache_->NewIterator(
H A Dwrite_batch_test.cc22 Iterator* iter = mem->NewIterator();
H A Dautocompact_test.cc82 Iterator* iter = db_->NewIterator(ReadOptions());
H A Dbuilder.cc67 Iterator* it = table_cache->NewIterator(ReadOptions(),
H A Dc.cc222 result->rep = db->rep->NewIterator(options->rep);
H A Dcorruption_test.cc95 Iterator* iter = db_->NewIterator(ReadOptions());
H A Ddb_bench.cc744 Iterator* iter = db_->NewIterator(ReadOptions());
757 Iterator* iter = db_->NewIterator(ReadOptions());
817 Iterator* iter = db_->NewIterator(options);
H A Ddb_impl.cc464 Iterator* iter = mem->NewIterator();
817 Iterator* iter = table_cache_->NewIterator(ReadOptions(),
1044 list.push_back(mem_->NewIterator());
1047 list.push_back(imm_->NewIterator());
1124 Iterator* DBImpl::NewIterator(const ReadOptions& options) { function in class:leveldb::DBImpl
H A Ddb_impl.h38 virtual Iterator* NewIterator(const ReadOptions&);
H A Ddb_test.cc314 Iterator* iter = db_->NewIterator(ReadOptions());
661 Iterator* iter = db_->NewIterator(ReadOptions());
677 Iterator* iter = db_->NewIterator(ReadOptions());
717 Iterator* iter = db_->NewIterator(ReadOptions());
803 Iterator* iter = db_->NewIterator(ReadOptions());
842 Iterator* iter = db_->NewIterator(ReadOptions());
1151 Iterator* iter = db_->NewIterator(ReadOptions());
1851 virtual Iterator* NewIterator(const ReadOptions& options) { function in class:leveldb::ModelDB
1947 Iterator* miter = model->NewIterator(options);
1949 Iterator* dbiter = db->NewIterator(option
[all...]
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv_test.cc205 Iterator* iterator = db->NewIterator(ReadOptions());
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Ddb.h87 // The result of NewIterator() is initially invalid (caller must
92 virtual Iterator* NewIterator(const ReadOptions& options) = 0;
H A Dtable.h46 // The result of NewIterator() is initially invalid (caller must
48 Iterator* NewIterator(const ReadOptions&) const;
/external/chromium_org/third_party/leveldatabase/src/issues/
H A Dissue178_test.cc75 leveldb::Iterator* iter = db->NewIterator(leveldb::ReadOptions());
H A Dissue200_test.cc34 Iterator *iter = db->NewIterator(read_options);
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.cc256 Iterator* Block::NewIterator(const Comparator* cmp) { function in class:leveldb::Block
H A Dblock.h25 Iterator* NewIterator(const Comparator* comparator);
H A Dtable.cc102 Iterator* iter = meta->NewIterator(BytewiseComparator());
198 iter = block->NewIterator(table->rep_->options.comparator);
210 Iterator* Table::NewIterator(const ReadOptions& options) const { function in class:leveldb::Table
212 rep_->index_block->NewIterator(rep_->options.comparator),
220 Iterator* iiter = rep_->index_block->NewIterator(rep_->options.comparator);
250 rep_->index_block->NewIterator(rep_->options.comparator);
H A Dtable_test.cc171 virtual Iterator* NewIterator() const = 0;
209 virtual Iterator* NewIterator() const { function in class:leveldb::BlockConstructor
210 return block_->NewIterator(comparator_);
253 virtual Iterator* NewIterator() const { function in class:leveldb::TableConstructor
254 return table_->NewIterator(ReadOptions());
340 virtual Iterator* NewIterator() const { function in class:leveldb::MemTableConstructor
341 return new KeyConvertingIterator(memtable_->NewIterator());
373 virtual Iterator* NewIterator() const { function in class:leveldb::DBConstructor
374 return db_->NewIterator(ReadOptions());
489 Iterator* iter = constructor_->NewIterator();
[all...]

Completed in 319 milliseconds

12