| /rocksdb-6.9/table/ |
| D | persistent_cache_helper.cc | 19 char cache_key[BlockBasedTable::kMaxCacheKeyPrefixSize + kMaxVarint64Length]; in InsertRawPage() 20 auto key = BlockBasedTable::GetCacheKey(cache_options.key_prefix.c_str(), in InsertRawPage() 37 char cache_key[BlockBasedTable::kMaxCacheKeyPrefixSize + kMaxVarint64Length]; in InsertUncompressedPage() 38 auto key = BlockBasedTable::GetCacheKey(cache_options.key_prefix.c_str(), in InsertUncompressedPage() 56 char cache_key[BlockBasedTable::kMaxCacheKeyPrefixSize + kMaxVarint64Length]; in LookupRawPage() 57 auto key = BlockBasedTable::GetCacheKey(cache_options.key_prefix.c_str(), in LookupRawPage() 88 char cache_key[BlockBasedTable::kMaxCacheKeyPrefixSize + kMaxVarint64Length]; in LookupUncompressedPage() 89 auto key = BlockBasedTable::GetCacheKey(cache_options.key_prefix.c_str(), in LookupUncompressedPage()
|
| /rocksdb-6.9/table/block_based/ |
| D | block_based_table_reader.cc | 72 typedef BlockBasedTable::IndexReader IndexReader; 78 BlockBasedTable::~BlockBasedTable() { in ~BlockBasedTable() 562 Status BlockBasedTable::Open( in Open() 684 Status BlockBasedTable::PrefetchTail( in PrefetchTail() 765 Status BlockBasedTable::ReadPropertiesBlock( in ReadPropertiesBlock() 862 Status BlockBasedTable::ReadRangeDelBlock( in ReadRangeDelBlock() 1058 Status BlockBasedTable::ReadMetaIndexBlock( in ReadMetaIndexBlock() 1771 Status BlockBasedTable::RetrieveBlock( in RetrieveBlock() 1867 const BlockBasedTable* table, in PartitionedIndexIteratorState() 1909 bool BlockBasedTable::PrefixMayMatch( in PrefixMayMatch() [all …]
|
| D | index_reader_common.h | 20 class BlockBasedTable::IndexReaderCommon : public BlockBasedTable::IndexReader { 22 IndexReaderCommon(const BlockBasedTable* t, in IndexReaderCommon() 29 static Status ReadIndexBlock(const BlockBasedTable* table, 36 const BlockBasedTable* table() const { return table_; } in table() 81 const BlockBasedTable* table_;
|
| D | block_prefetcher.cc | 12 void BlockPrefetcher::PrefetchIfNeeded(const BlockBasedTable::Rep* rep, in PrefetchIfNeeded() 21 BlockBasedTable::kMinNumFileReadsToStartAutoReadahead) { in PrefetchIfNeeded() 33 readahead_size_ = std::min(BlockBasedTable::kMaxAutoReadaheadSize, in PrefetchIfNeeded() 38 rep->CreateFilePrefetchBuffer(BlockBasedTable::kInitAutoReadaheadSize, in PrefetchIfNeeded() 39 BlockBasedTable::kMaxAutoReadaheadSize, in PrefetchIfNeeded()
|
| D | filter_block_reader_common.h | 15 class BlockBasedTable; variable 25 FilterBlockReaderCommon(const BlockBasedTable* t, in FilterBlockReaderCommon() 32 static Status ReadFilterBlock(const BlockBasedTable* table, 39 const BlockBasedTable* table() const { return table_; } in table() 51 const BlockBasedTable* table_;
|
| D | uncompression_dict_reader.h | 15 class BlockBasedTable; variable 28 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, 41 UncompressionDictReader(const BlockBasedTable* t, in UncompressionDictReader() 50 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, 55 const BlockBasedTable* table_;
|
| D | mock_block_based_table.h | 15 class MockBlockBasedTable : public BlockBasedTable { 18 : BlockBasedTable(rep, nullptr /* block_cache_tracer */) {} in MockBlockBasedTable() 30 std::unique_ptr<BlockBasedTable> table_; 40 table_.reset(new MockBlockBasedTable(new BlockBasedTable::Rep( in MockBlockBasedTableTester()
|
| D | block_based_table_reader.h | 56 class BlockBasedTable : public TableReader { 175 ~BlockBasedTable(); 246 explicit BlockBasedTable(Rep* rep, BlockCacheTracer* const block_cache_tracer) in BlockBasedTable() function 249 explicit BlockBasedTable(const TableReader&) = delete; 414 BlockBasedTable* new_table, bool prefetch_all, 457 class BlockBasedTable::PartitionedIndexIteratorState 461 const BlockBasedTable* table, 468 const BlockBasedTable* table_; 474 struct BlockBasedTable::Rep {
|
| D | binary_search_index_reader.h | 16 class BinarySearchIndexReader : public BlockBasedTable::IndexReaderCommon { 22 static Status Create(const BlockBasedTable* table, 44 BinarySearchIndexReader(const BlockBasedTable* t, in BinarySearchIndexReader()
|
| D | partitioned_index_reader.h | 14 class PartitionIndexReader : public BlockBasedTable::IndexReaderCommon { 20 static Status Create(const BlockBasedTable* table, 45 PartitionIndexReader(const BlockBasedTable* t, in PartitionIndexReader()
|
| D | hash_index_reader.h | 16 class HashIndexReader : public BlockBasedTable::IndexReaderCommon { 18 static Status Create(const BlockBasedTable* table, 44 HashIndexReader(const BlockBasedTable* t, CachableEntry<Block>&& index_block) in HashIndexReader()
|
| D | index_reader_common.cc | 12 Status BlockBasedTable::IndexReaderCommon::ReadIndexBlock( in ReadIndexBlock() 13 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, in ReadIndexBlock() 34 Status BlockBasedTable::IndexReaderCommon::GetOrReadIndexBlock( in GetOrReadIndexBlock()
|
| D | partitioned_index_reader.cc | 16 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, in Create() 61 const BlockBasedTable::Rep* rep = table()->rep_; in NewIterator() 70 new BlockBasedTable::PartitionedIndexIteratorState(table(), in NewIterator() 108 const BlockBasedTable::Rep* rep = table()->rep_; in CacheDependencies()
|
| D | filter_block_reader_common.cc | 16 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, in ReadFilterBlock() 26 const BlockBasedTable::Rep* const rep = table->get_rep(); in ReadFilterBlock() 43 const BlockBasedTable::Rep* const rep = table_->get_rep(); in table_prefix_extractor()
|
| D | uncompression_dict_reader.cc | 15 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, in Create() 45 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, in ReadUncompressionDictionary() 55 const BlockBasedTable::Rep* const rep = table->get_rep(); in ReadUncompressionDictionary()
|
| D | hash_index_reader.cc | 15 Status HashIndexReader::Create(const BlockBasedTable* table, in Create() 25 const BlockBasedTable::Rep* rep = table->get_rep(); in Create() 115 const BlockBasedTable::Rep* rep = table()->get_rep(); in NewIterator()
|
| D | block_prefetcher.h | 17 void PrefetchIfNeeded(const BlockBasedTable::Rep* rep, 27 size_t readahead_size_ = BlockBasedTable::kInitAutoReadaheadSize;
|
| D | partitioned_filter_block_test.cc | 25 class MockedBlockBasedTable : public BlockBasedTable { 28 : BlockBasedTable(rep, /*block_cache_tracer=*/nullptr) { in MockedBlockBasedTable() 37 MyPartitionedFilterBlockReader(BlockBasedTable* t, in MyPartitionedFilterBlockReader() 66 std::unique_ptr<BlockBasedTable> table_; 149 new BlockBasedTable::Rep(ioptions_, env_options_, table_options_, in NewReader()
|
| D | binary_search_index_reader.cc | 13 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer, in Create() 46 const BlockBasedTable::Rep* rep = table()->get_rep(); in NewIterator()
|
| D | partitioned_index_iterator.h | 26 const BlockBasedTable* table, const ReadOptions& read_options, 125 const BlockBasedTable* table_;
|
| D | block_based_filter_block.h | 81 BlockBasedFilterBlockReader(const BlockBasedTable* t, 88 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer,
|
| D | partitioned_filter_block.h | 70 PartitionedFilterBlockReader(const BlockBasedTable* t, 74 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer,
|
| D | full_filter_block.h | 86 FullFilterBlockReader(const BlockBasedTable* t, 90 const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer,
|
| D | block_based_table_builder.cc | 343 char compressed_cache_key_prefix[BlockBasedTable::kMaxCacheKeyPrefixSize]; 492 BlockBasedTable::GenerateCachePrefix( in BlockBasedTableBuilder() 861 key = BlockBasedTable::kFilterBlockPrefix; in WriteFilterBlock() 864 ? BlockBasedTable::kPartitionedFilterBlockPrefix in WriteFilterBlock() 865 : BlockBasedTable::kFullFilterBlockPrefix; in WriteFilterBlock() 1221 const std::string BlockBasedTable::kFilterBlockPrefix = "filter."; 1222 const std::string BlockBasedTable::kFullFilterBlockPrefix = "fullfilter."; 1223 const std::string BlockBasedTable::kPartitionedFilterBlockPrefix =
|
| /rocksdb-6.9/tools/advisor/test/input_files/ |
| D | OPTIONS-000005 | 30 [TableOptions/BlockBasedTable "default"] 46 [TableOptions/BlockBasedTable "col_fam_A"]
|