Home
last modified time | relevance | path

Searched refs:PersistentCache (Results 1 – 19 of 19) sorted by relevance

/rocksdb-6.9/include/rocksdb/
Dpersistent_cache.h25 class PersistentCache {
29 virtual ~PersistentCache() {} in ~PersistentCache()
66 std::shared_ptr<PersistentCache>* cache);
Dtable.h35 class PersistentCache; variable
158 std::shared_ptr<PersistentCache> persistent_cache = nullptr;
/rocksdb-6.9/utilities/persistent_cache/
Dpersistent_cache_tier.cc95 PersistentCache::StatsType PersistentCacheTier::Stats() { in Stats()
99 return PersistentCache::StatsType{}; in Stats()
126 PersistentCache::StatsType PersistentTieredCache::Stats() { in Stats()
Dpersistent_cache_tier.h233 class PersistentCacheTier : public PersistentCache {
254 virtual PersistentCache::StatsType Stats() override;
301 PersistentCache::StatsType Stats() override;
Dblock_cache_tier.cc142 PersistentCache::StatsType BlockCacheTier::Stats() { in Stats()
397 std::shared_ptr<PersistentCache>* cache) { in NewPersistentCache()
Dvolatile_tier_impl.h70 PersistentCache::StatsType Stats() override;
Dvolatile_tier_impl.cc21 PersistentCache::StatsType VolatileCacheTier::Stats() { in Stats()
Dblock_cache_tier.h72 PersistentCache::StatsType Stats() override;
Dpersistent_cache_test.cc290 std::shared_ptr<PersistentCache> cache; in TEST_F()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DPersistentCache.java12 public class PersistentCache extends RocksObject { class
14 public PersistentCache(final Env env, final String path, final long size, in PersistentCache() method in PersistentCache
DBlockBasedTableConfig.java291 final PersistentCache persistentCache) { in setPersistentCache()
963 private PersistentCache persistentCache;
/rocksdb-6.9/table/
Dpersistent_cache_options.h21 const std::shared_ptr<PersistentCache>& _persistent_cache, in PersistentCacheOptions()
29 std::shared_ptr<PersistentCache> persistent_cache;
/rocksdb-6.9/java/rocksjni/
Dpersistent_cache.cc36 new std::shared_ptr<ROCKSDB_NAMESPACE::PersistentCache>(nullptr); in Java_org_rocksdb_PersistentCache_newPersistentCache()
54 reinterpret_cast<std::shared_ptr<ROCKSDB_NAMESPACE::PersistentCache>*>( in Java_org_rocksdb_PersistentCache_disposeInternal()
Dtable.cc108 std::shared_ptr<ROCKSDB_NAMESPACE::PersistentCache> *pCache = in Java_org_rocksdb_BlockBasedTableConfig_newTableFactoryHandle()
109 reinterpret_cast<std::shared_ptr<ROCKSDB_NAMESPACE::PersistentCache> *>( in Java_org_rocksdb_BlockBasedTableConfig_newTableFactoryHandle()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DBlockBasedTableConfigTest.java148 try (final PersistentCache persistentCache = in persistentCache()
149 …new PersistentCache(Env.getDefault(), dbFolder.getRoot().getPath(), 1024 * 1024 * 100, logger, fal… in persistentCache()
/rocksdb-6.9/options/
Doptions_settable_test.cc91 sizeof(std::shared_ptr<PersistentCache>)}, in TEST_F()
/rocksdb-6.9/java/
DCMakeLists.txt174 src/main/java/org/rocksdb/PersistentCache.java
430 org.rocksdb.PersistentCache
DMakefile48 org.rocksdb.PersistentCache\
/rocksdb-6.9/db/
Ddb_test2.cc1767 class MockPersistentCache : public PersistentCache {
1778 PersistentCache::StatsType Stats() override { in Stats()
1779 return PersistentCache::StatsType(); in Stats()
1949 TEST_F(DBTest2, PersistentCache) { in TEST_F() argument