Home
last modified time | relevance | path

Searched refs:Rep (Results 1 – 25 of 33) sorted by relevance

12

/rocksdb-6.9/table/block_based/
Dblock_based_table_builder.cc450 Rep(const Rep&) = delete;
451 Rep& operator=(const Rep&) = delete;
453 ~Rep() {} in ~Rep() argument
506 Rep* r = rep_; in Add()
586 Rep* r = rep_; in Flush()
608 Rep* r = rep_; in WriteBlock()
724 Rep* r = rep_; in WriteRawBlock()
805 Rep* r = rep_; in InsertBlockInCache()
1037 Rep* r = rep_; in WriteFooter()
1067 Rep* r = rep_; in EnterUnbuffered()
[all …]
Dblock_based_table_reader.h216 struct Rep;
218 Rep* get_rep() { return rep_; } in get_rep()
219 const Rep* get_rep() const { return rep_; } in get_rep()
245 Rep* rep_;
246 explicit BlockBasedTable(Rep* rep, BlockCacheTracer* const block_cache_tracer) in BlockBasedTable()
269 static TBlockIter* InitBlockIterator(const Rep* rep, Block* block,
429 static void SetupCacheKeyPrefix(Rep* rep);
474 struct BlockBasedTable::Rep { struct
475 Rep(const ImmutableCFOptions& _ioptions, const EnvOptions& _env_options, in Rep() function
Dmock_block_based_table.h17 explicit MockBlockBasedTable(Rep* rep) in MockBlockBasedTable()
40 table_.reset(new MockBlockBasedTable(new BlockBasedTable::Rep( in MockBlockBasedTableTester()
Dfilter_block_reader_common.cc26 const BlockBasedTable::Rep* const rep = table->get_rep(); in ReadFilterBlock()
43 const BlockBasedTable::Rep* const rep = table_->get_rep(); in table_prefix_extractor()
Dblock_based_table_builder.h135 struct Rep;
138 Rep* rep_;
Dblock_based_table_reader.cc616 Rep* rep = new BlockBasedTable::Rep(ioptions, env_options, table_options, in Open()
907 {Rep::FilterType::kFullFilter, Rep::FilterType::kPartitionedFilter, in PrefetchIndexAndFilterBlocks()
908 Rep::FilterType::kBlockFilter}) { in PrefetchIndexAndFilterBlocks()
911 case Rep::FilterType::kFullFilter: in PrefetchIndexAndFilterBlocks()
914 case Rep::FilterType::kPartitionedFilter: in PrefetchIndexAndFilterBlocks()
917 case Rep::FilterType::kBlockFilter: in PrefetchIndexAndFilterBlocks()
1297 if (filter_type == Rep::FilterType::kNoFilter) { in CreateFilterBlockReader()
1304 case Rep::FilterType::kPartitionedFilter: in CreateFilterBlockReader()
1308 case Rep::FilterType::kBlockFilter: in CreateFilterBlockReader()
1312 case Rep::FilterType::kFullFilter: in CreateFilterBlockReader()
[all …]
Dhash_index_reader.cc25 const BlockBasedTable::Rep* rep = table->get_rep(); in Create()
115 const BlockBasedTable::Rep* rep = table()->get_rep(); in NewIterator()
Dpartitioned_index_reader.cc61 const BlockBasedTable::Rep* rep = table()->rep_; in NewIterator()
108 const BlockBasedTable::Rep* rep = table()->rep_; in CacheDependencies()
Dblock_prefetcher.h17 void PrefetchIfNeeded(const BlockBasedTable::Rep* rep,
Dblock_prefetcher.cc12 void BlockPrefetcher::PrefetchIfNeeded(const BlockBasedTable::Rep* rep, in PrefetchIfNeeded()
/rocksdb-6.9/third-party/folly/folly/synchronization/detail/
DProxyLockable.h75 template <typename Rep, typename Period>
78 const std::chrono::duration<Rep, Period>& duration);
100 template <typename Rep, typename Period>
101 bool try_lock_for(const std::chrono::duration<Rep, Period>& duration);
DProxyLockable-inl.h92 template <typename Rep, typename Period>
95 const std::chrono::duration<Rep, Period>& duration) { in ProxyLockableUniqueLock() argument
144 template <typename Rep, typename Period>
146 const std::chrono::duration<Rep, Period>& duration) { in try_lock_for() argument
/rocksdb-6.9/util/
Dcompression_context_cache.cc70 class CompressionContextCache::Rep { class in ROCKSDB_NAMESPACE::CompressionContextCache
72 Rep() {} in Rep() function in ROCKSDB_NAMESPACE::CompressionContextCache::Rep
88 CompressionContextCache::CompressionContextCache() : rep_(new Rep()) {} in CompressionContextCache()
Dcompression_context_cache.h43 class Rep; variable
44 Rep* rep_;
/rocksdb-6.9/third-party/folly/folly/synchronization/
DBaton.h191 template <typename Rep, typename Period>
193 const std::chrono::duration<Rep, Period>& timeout,
226 template <typename Rep, typename Period>
228 const std::chrono::duration<Rep, Period>& timeout) noexcept { in timed_wait() argument
DDistributedMutex.h204 template <typename Rep, typename Period>
206 const std::chrono::duration<Rep, Period>& duration);
DParkingLot.h204 typename Rep,
211 std::chrono::duration<Rep, Period>& timeout) { in park_for() argument
/rocksdb-6.9/utilities/write_batch_with_index/
Dwrite_batch_with_index.cc434 struct WriteBatchWithIndex::Rep { struct in ROCKSDB_NAMESPACE::WriteBatchWithIndex
435 explicit Rep(const Comparator* index_comparator, size_t reserved_bytes = 0, in Rep() argument
485 bool WriteBatchWithIndex::Rep::UpdateExistingEntry( in UpdateExistingEntry()
491 bool WriteBatchWithIndex::Rep::UpdateExistingEntryWithCfId( in UpdateExistingEntryWithCfId()
515 void WriteBatchWithIndex::Rep::AddOrUpdateIndex( in AddOrUpdateIndex()
527 void WriteBatchWithIndex::Rep::AddOrUpdateIndex(const Slice& key) { in AddOrUpdateIndex()
533 void WriteBatchWithIndex::Rep::AddNewEntry(uint32_t column_family_id) { in AddNewEntry()
551 void WriteBatchWithIndex::Rep::Clear() { in Clear()
556 void WriteBatchWithIndex::Rep::ClearIndex() { in ClearIndex()
566 Status WriteBatchWithIndex::Rep::ReBuildIndex() { in ReBuildIndex()
[all …]
/rocksdb-6.9/table/
Dsst_file_reader.cc21 struct SstFileReader::Rep { struct in ROCKSDB_NAMESPACE::SstFileReader
29 Rep(const Options& opts) in Rep() function
36 SstFileReader::SstFileReader(const Options& options) : rep_(new Rep(options)) {} in SstFileReader()
Dsst_file_writer.cc29 struct SstFileWriter::Rep { struct in ROCKSDB_NAMESPACE::SstFileWriter
30 Rep(const EnvOptions& _env_options, const Options& options, in Rep() argument
167 : rep_(new Rep(env_options, options, io_priority, user_comparator, in SstFileWriter()
181 Rep* r = rep_.get(); in Open()
283 Rep* r = rep_.get(); in Finish()
/rocksdb-6.9/include/rocksdb/
Dsst_file_reader.h41 struct Rep;
42 std::unique_ptr<Rep> rep_;
Dsst_file_writer.h134 struct Rep;
135 std::unique_ptr<Rep> rep_;
/rocksdb-6.9/db/
Dversion_builder.h45 class Rep;
46 std::unique_ptr<Rep> rep_;
Dversion_builder.cc60 class VersionBuilder::Rep { class in ROCKSDB_NAMESPACE::VersionBuilder
110 Rep(const FileOptions& file_options, Logger* info_log, in Rep() function in ROCKSDB_NAMESPACE::VersionBuilder::Rep
126 ~Rep() { in ~Rep()
750 : rep_(new Rep(file_options, info_log, table_cache, base_vstorage)) {} in VersionBuilder()
/rocksdb-6.9/include/rocksdb/utilities/
Dwrite_batch_with_index.h272 struct Rep;
273 std::unique_ptr<Rep> rep;

12