Home
last modified time | relevance | path

Searched refs:Prefetch (Results 1 – 21 of 21) sorted by relevance

/rocksdb-6.9/file/
Dfile_prefetch_buffer.cc24 Status FilePrefetchBuffer::Prefetch(RandomAccessFileReader* reader, in Prefetch() function in ROCKSDB_NAMESPACE::FilePrefetchBuffer
118 s = Prefetch(file_reader_, offset, std::max(n, readahead_size_), in TryReadFromCache()
121 s = Prefetch(file_reader_, offset, n + readahead_size_, for_compaction); in TryReadFromCache()
Drandom_access_file_reader.h128 Status Prefetch(uint64_t offset, size_t n) const { in Prefetch() function
129 return file_->Prefetch(offset, n, IOOptions(), nullptr); in Prefetch()
Dfile_prefetch_buffer.h62 Status Prefetch(RandomAccessFileReader* reader, uint64_t offset, size_t n,
Dreadahead_raf.cc74 Status Prefetch(uint64_t offset, size_t n) override { in Prefetch() function in ROCKSDB_NAMESPACE::__anon832aeac60111::ReadaheadRandomAccessFile
/rocksdb-6.9/table/plain/
Dplain_table_bloom.h52 void Prefetch(uint32_t hash);
80 inline void PlainTableBloomV1::Prefetch(uint32_t h) { in Prefetch() function
Dplain_table_reader.cc550 bloom_.Prefetch(prefix_hash); in Prepare()
/rocksdb-6.9/util/
Ddynamic_bloom.h73 void Prefetch(uint32_t h);
144 inline void DynamicBloom::Prefetch(uint32_t h32) { in Prefetch() function
/rocksdb-6.9/table/block_based/
Dblock_prefetcher.cc28 rep->file->Prefetch(handle.offset(), readahead_size_); in PrefetchIfNeeded()
Dpartitioned_index_reader.cc151 s = prefetch_buffer->Prefetch(rep->file.get(), prefetch_off, in CacheDependencies()
Dpartitioned_filter_block.cc341 s = prefetch_buffer->Prefetch(rep->file.get(), prefetch_off, in CacheDependencies()
Dblock_based_table_reader.h137 Status Prefetch(const Slice* begin, const Slice* end) override;
Dblock_based_table_reader.cc720 s = file->Prefetch(prefetch_off, prefetch_len); in PrefetchTail()
724 s = (*prefetch_buffer)->Prefetch(file, prefetch_off, prefetch_len); in PrefetchTail()
2606 Status BlockBasedTable::Prefetch(const Slice* const begin, in Prefetch() function in ROCKSDB_NAMESPACE::BlockBasedTable
/rocksdb-6.9/table/
Dtable_reader.h116 virtual Status Prefetch(const Slice* begin = nullptr,
Dtable_test.cc1624 s = table_reader->Prefetch(begin.get(), end.get()); in PrefetchRange()
/rocksdb-6.9/env/
Dcomposite_env_wrapper.h85 Status Prefetch(uint64_t offset, size_t n) override { in Prefetch() function
88 return target_->Prefetch(offset, n, io_opts, &dbg); in Prefetch()
682 IOStatus Prefetch(uint64_t offset, size_t n, const IOOptions& /*options*/, in Prefetch() function
684 return status_to_io_status(target_->Prefetch(offset, n)); in Prefetch()
Denv_encryption.cc140 Status Prefetch(uint64_t offset, size_t n) override { in Prefetch() function in ROCKSDB_NAMESPACE::EncryptedRandomAccessFile
142 return file_->Prefetch(offset + prefixLength_, n); in Prefetch()
Dio_posix.h201 virtual IOStatus Prefetch(uint64_t offset, size_t n, const IOOptions& opts,
Dio_posix.cc733 IOStatus PosixRandomAccessFile::Prefetch(uint64_t offset, size_t n, in Prefetch() function in ROCKSDB_NAMESPACE::PosixRandomAccessFile
/rocksdb-6.9/include/rocksdb/
Dfile_system.h628 virtual IOStatus Prefetch(uint64_t /*offset*/, size_t /*n*/, in Prefetch() function
1242 IOStatus Prefetch(uint64_t offset, size_t n, const IOOptions& options, in Prefetch() function
1244 return target_->Prefetch(offset, n, options, dbg); in Prefetch()
Denv.h656 virtual Status Prefetch(uint64_t /*offset*/, size_t /*n*/) { in Prefetch() function
1441 Status Prefetch(uint64_t offset, size_t n) override { in Prefetch() function
1442 return target_->Prefetch(offset, n); in Prefetch()
/rocksdb-6.9/db/
Ddb_test_util.h443 virtual Status Prefetch(uint64_t offset, size_t n) override { in NewRandomAccessFile()
444 Status s = target_->Prefetch(offset, n); in NewRandomAccessFile()