Home
last modified time | relevance | path

Searched refs:KeyMayExist (Results 1 – 12 of 12) sorted by relevance

/rocksdb-6.9/include/rocksdb/
Ddb.h636 virtual bool KeyMayExist(const ReadOptions& /*options*/,
647 virtual bool KeyMayExist(const ReadOptions& options,
650 return KeyMayExist(options, column_family, key, value,
654 virtual bool KeyMayExist(const ReadOptions& options, const Slice& key,
656 return KeyMayExist(options, DefaultColumnFamily(), key, value, value_found);
659 virtual bool KeyMayExist(const ReadOptions& options, const Slice& key,
662 return KeyMayExist(options, DefaultColumnFamily(), key, value, timestamp,
/rocksdb-6.9/include/rocksdb/utilities/
Dstackable_db.h150 using DB::KeyMayExist;
151 virtual bool KeyMayExist(const ReadOptions& options,
155 return db_->KeyMayExist(options, column_family, key, value, value_found);
/rocksdb-6.9/utilities/ttl/
Ddb_ttl_impl.cc249 bool DBWithTTLImpl::KeyMayExist(const ReadOptions& options, in KeyMayExist() function in ROCKSDB_NAMESPACE::DBWithTTLImpl
253 bool ret = db_->KeyMayExist(options, column_family, key, value, value_found); in KeyMayExist()
Ddb_ttl_impl.h65 using StackableDB::KeyMayExist;
66 virtual bool KeyMayExist(const ReadOptions& options,
Dttl_test.cc195 bool ret = db_ttl_->KeyMayExist(ropts, kv.first, &val, &value_found); in SimpleKeyMayExistCheck()
586 TEST_F(TtlTest, KeyMayExist) { in TEST_F() argument
/rocksdb-6.9/db/
Ddb_bloom_filter_test.cc74 TEST_P(DBBloomFilterTestDefFormatVersion, KeyMayExist) { in TEST_P() argument
94 ASSERT_TRUE(!db_->KeyMayExist(ropts, handles_[1], "a", &value)); in TEST_P()
99 db_->KeyMayExist(ropts, handles_[1], "a", &value, &value_found)); in TEST_P()
109 db_->KeyMayExist(ropts, handles_[1], "a", &value, &value_found)); in TEST_P()
120 ASSERT_TRUE(!db_->KeyMayExist(ropts, handles_[1], "a", &value)); in TEST_P()
130 ASSERT_TRUE(!db_->KeyMayExist(ropts, handles_[1], "a", &value)); in TEST_P()
138 ASSERT_TRUE(!db_->KeyMayExist(ropts, handles_[1], "c", &value)); in TEST_P()
Ddb_block_cache_test.cc320 db_->KeyMayExist(ReadOptions(), handles_[1], "key", &value); in TEST_F()
326 db_->KeyMayExist(ReadOptions(), handles_[1], "key", &value); in TEST_F()
Ddb_test.cc2756 using DB::KeyMayExist;
2757 bool KeyMayExist(const ReadOptions& /*options*/, in KeyMayExist() function in ROCKSDB_NAMESPACE::ModelDB
Ddb_test2.cc1547 db_->KeyMayExist(ReadOptions(), handles_[1], "key", &value); in TEST_P()
/rocksdb-6.9/db/db_impl/
Ddb_impl.h249 using DB::KeyMayExist;
250 virtual bool KeyMayExist(const ReadOptions& options,
Ddb_impl.cc2495 bool DBImpl::KeyMayExist(const ReadOptions& read_options, in KeyMayExist() function in ROCKSDB_NAMESPACE::DBImpl
/rocksdb-6.9/java/rocksjni/
Drocksjni.cc1844 const bool exists = db->KeyMayExist( in key_may_exist_helper()