| /rocksdb-6.9/include/rocksdb/ |
| D | db.h | 636 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/ |
| D | stackable_db.h | 150 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/ |
| D | db_ttl_impl.cc | 249 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()
|
| D | db_ttl_impl.h | 65 using StackableDB::KeyMayExist; 66 virtual bool KeyMayExist(const ReadOptions& options,
|
| D | ttl_test.cc | 195 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/ |
| D | db_bloom_filter_test.cc | 74 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()
|
| D | db_block_cache_test.cc | 320 db_->KeyMayExist(ReadOptions(), handles_[1], "key", &value); in TEST_F() 326 db_->KeyMayExist(ReadOptions(), handles_[1], "key", &value); in TEST_F()
|
| D | db_test.cc | 2756 using DB::KeyMayExist; 2757 bool KeyMayExist(const ReadOptions& /*options*/, in KeyMayExist() function in ROCKSDB_NAMESPACE::ModelDB
|
| D | db_test2.cc | 1547 db_->KeyMayExist(ReadOptions(), handles_[1], "key", &value); in TEST_P()
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.h | 249 using DB::KeyMayExist; 250 virtual bool KeyMayExist(const ReadOptions& options,
|
| D | db_impl.cc | 2495 bool DBImpl::KeyMayExist(const ReadOptions& read_options, in KeyMayExist() function in ROCKSDB_NAMESPACE::DBImpl
|
| /rocksdb-6.9/java/rocksjni/ |
| D | rocksjni.cc | 1844 const bool exists = db->KeyMayExist( in key_may_exist_helper()
|