Home
last modified time | relevance | path

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

/rocksdb-6.9/table/
Dget_context.cc44 PinnableSlice* pinnable_val, std::string* timestamp, bool* value_found, in GetContext() argument
57 value_found_(value_found), in GetContext()
77 PinnableSlice* pinnable_val, bool* value_found, MergeContext* merge_context, in GetContext() argument
82 pinnable_val, nullptr, value_found, merge_context, do_merge, in GetContext()
Dget_context.h91 bool* value_found, MergeContext* merge_context, bool do_merge,
100 std::string* timestamp, bool* value_found,
/rocksdb-6.9/include/rocksdb/
Ddb.h640 bool* value_found = nullptr) {
641 if (value_found != nullptr) {
642 *value_found = false;
649 std::string* value, bool* value_found = nullptr) {
651 /*timestamp=*/nullptr, value_found);
655 std::string* value, bool* value_found = nullptr) {
656 return KeyMayExist(options, DefaultColumnFamily(), key, value, value_found);
661 bool* value_found = nullptr) {
663 value_found);
/rocksdb-6.9/utilities/ttl/
Ddb_ttl_impl.cc252 bool* value_found) { in KeyMayExist() argument
253 bool ret = db_->KeyMayExist(options, column_family, key, value, value_found); in KeyMayExist()
254 if (ret && value != nullptr && value_found != nullptr && *value_found) { in KeyMayExist()
Dttl_test.cc192 bool value_found; in SimpleKeyMayExistCheck() local
195 bool ret = db_ttl_->KeyMayExist(ropts, kv.first, &val, &value_found); in SimpleKeyMayExistCheck()
196 if (ret == false || value_found == false) { in SimpleKeyMayExistCheck()
Ddb_ttl_impl.h69 bool* value_found = nullptr) override;
/rocksdb-6.9/include/rocksdb/utilities/
Dstackable_db.h154 bool* value_found = nullptr) override {
155 return db_->KeyMayExist(options, column_family, key, value, value_found);
/rocksdb-6.9/db/
Ddb_bloom_filter_test.cc97 bool value_found = false; in TEST_P() local
99 db_->KeyMayExist(ropts, handles_[1], "a", &value, &value_found)); in TEST_P()
100 ASSERT_TRUE(value_found); in TEST_P()
109 db_->KeyMayExist(ropts, handles_[1], "a", &value, &value_found)); in TEST_P()
110 ASSERT_TRUE(!value_found); in TEST_P()
Dversion_set.h611 bool* value_found = nullptr, bool* key_exists = nullptr,
Ddb_test.cc2760 bool* value_found = nullptr) override { in KeyMayExist() argument
2761 if (value_found != nullptr) { in KeyMayExist()
2762 *value_found = false; in KeyMayExist()
Dversion_set.cc1738 SequenceNumber* max_covering_tombstone_seq, bool* value_found, in Get() argument
1760 do_merge ? value : nullptr, do_merge ? timestamp : nullptr, value_found, in Get()
Ddb_test2.cc3018 get_impl_options.value_found = &dont_care; in TEST_F()
/rocksdb-6.9/java/rocksjni/
Drocksjni.cc1819 bool* has_exception, std::string* value, bool* value_found) { in key_may_exist_helper() argument
1845 read_opts, cf_handle, key_slice, value, value_found); in key_may_exist_helper()
1866 bool value_found = false; in Java_org_rocksdb_RocksDB_keyMayExist() local
1871 &has_exception, &value, &value_found); in Java_org_rocksdb_RocksDB_keyMayExist()
1893 bool value_found = false; in Java_org_rocksdb_RocksDB_keyMayExistFoundValue() local
1898 &has_exception, &value, &value_found); in Java_org_rocksdb_RocksDB_keyMayExistFoundValue()
1908 } else if (!value_found) { in Java_org_rocksdb_RocksDB_keyMayExistFoundValue()
/rocksdb-6.9/utilities/transactions/
Dwrite_unprepared_txn_db.cc106 get_impl_options.value_found = &not_used; in RollbackRecoveredTransaction()
Dwrite_prepared_txn.cc296 get_impl_options.value_found = &not_used; in RollbackInternal()
Dwrite_unprepared_txn.cc652 get_impl_options.value_found = &not_used; in WriteRollbackKeys()
Dwrite_prepared_txn_db.cc238 get_impl_options.value_found = dont_care; in Get()
/rocksdb-6.9/db/db_impl/
Ddb_impl.cc1657 get_impl_options.get_value ? get_impl_options.value_found : nullptr, in GetImpl()
2498 bool* value_found) { in KeyMayExist() argument
2500 if (value_found != nullptr) { in KeyMayExist()
2502 *value_found = true; in KeyMayExist()
2510 get_impl_options.value_found = value_found; in KeyMayExist()
Ddb_impl.h253 bool* value_found = nullptr) override;
456 bool* value_found = nullptr; member