Home
last modified time | relevance | path

Searched refs:kNotFound (Results 1 – 17 of 17) sorted by relevance

/rocksdb-6.9/table/
Dget_context.cc99 assert(state_ == kNotFound); in SaveValue()
225 assert(state_ == kNotFound || state_ == kMerge); in SaveValue()
231 if (kNotFound == state_) { in SaveValue()
290 assert(state_ == kNotFound || state_ == kMerge); in SaveValue()
291 if (kNotFound == state_) { in SaveValue()
313 assert(state_ == kNotFound || state_ == kMerge); in SaveValue()
Dget_context.h59 kNotFound, enumerator
Dtable_reader_bench.cc178 ioptions.statistics, GetContext::kNotFound, in TableReaderBenchmark()
Dtable_test.cc2532 GetContext::kNotFound, user_key, &value, nullptr, in TEST_P()
2788 GetContext::kNotFound, Slice(), nullptr, nullptr, in TEST_P()
2963 GetContext::kNotFound, user_key, &value, nullptr, in TEST_P()
3049 GetContext::kNotFound, user_key, &value, nullptr, in TEST_P()
3075 GetContext::kNotFound, user_key, &value, nullptr, in TEST_P()
3080 ASSERT_EQ(get_context.State(), GetContext::kNotFound); in TEST_P()
4621 GetContext::kNotFound, user_key, &value, nullptr, in TEST_P()
4647 GetContext::kNotFound, user_key, &value, nullptr, in TEST_P()
4651 ASSERT_EQ(get_context.State(), GetContext::kNotFound); in TEST_P()
/rocksdb-6.9/include/rocksdb/
Dstatus.h48 kNotFound = 1, enumerator
106 return Status(kNotFound, msg, msg2);
109 static Status NotFound(SubCode msg = kNone) { return Status(kNotFound, msg); }
224 bool IsNotFound() const { return code() == kNotFound; } in IsNotFound()
Dio_status.h78 return IOStatus(kNotFound, msg, msg2);
82 return IOStatus(kNotFound, msg);
/rocksdb-6.9/table/cuckoo/
Dcuckoo_table_reader_test.cc126 GetContext::kNotFound, Slice(user_keys[i]), &value, in CreateCuckooFileAndCheckReader()
350 GetContext get_context(ucmp, nullptr, nullptr, nullptr, GetContext::kNotFound, in TEST_F()
365 GetContext::kNotFound, Slice(not_found_key2), &value, in TEST_F()
381 GetContext::kNotFound, Slice(unused_key), &value, in TEST_F()
459 GetContext::kNotFound, Slice(), &value, nullptr, in WriteFile()
508 GetContext::kNotFound, Slice(), &value, nullptr, in ReadKeys()
/rocksdb-6.9/table/block_based/
Ddata_block_hash_index_test.cc633 GetContext::kNotFound, seek_ukey, &value, nullptr, in TEST()
658 GetContext::kNotFound, seek_ukey, &value, nullptr, in TEST()
683 GetContext::kNotFound, seek_ukey, &value, nullptr, in TEST()
708 GetContext::kNotFound, seek_ukey, &value, nullptr, in TEST()
712 ASSERT_EQ(get_context.State(), GetContext::kNotFound); in TEST()
/rocksdb-6.9/db/
Dcompacted_db_impl.cc39 GetContext::kNotFound, key, value, nullptr, nullptr, in Get()
72 GetContext::kNotFound, keys[idx], &pinnable_val, in MultiGet()
Dversion_set.cc1759 status->ok() ? GetContext::kNotFound : GetContext::kMerge, user_key, in Get()
1807 if (get_context.State() != GetContext::kNotFound && in Get()
1813 case GetContext::kNotFound: in Get()
1899 iter->s->ok() ? GetContext::kNotFound : GetContext::kMerge, iter->ukey, in MultiGet()
1968 if (get_context.State() != GetContext::kNotFound && in MultiGet()
1980 case GetContext::kNotFound: in MultiGet()
/rocksdb-6.9/util/
Dstatus.cc82 case kNotFound: in ToString()
/rocksdb-6.9/utilities/write_batch_with_index/
Dwrite_batch_with_index_internal.h127 enum Result { kFound, kDeleted, kNotFound, kMergeInProgress, kError }; enumerator
Dwrite_batch_with_index.cc782 case WriteBatchWithIndexInternal::Result::kNotFound: in GetFromBatch()
880 result == WriteBatchWithIndexInternal::Result::kNotFound); in GetFromBatchAndDB()
984 result == WriteBatchWithIndexInternal::Result::kNotFound); in MultiGetFromBatchAndDB()
Dwrite_batch_with_index_internal.cc162 WriteBatchWithIndexInternal::Result::kNotFound; in GetFromBatch()
/rocksdb-6.9/db/compaction/
Dcompaction_picker.cc846 const int kNotFound = -1; in SanitizeCompactionInputFilesForAllLevels() local
859 int last_included = kNotFound; in SanitizeCompactionInputFilesForAllLevels()
875 if (last_included == kNotFound) { in SanitizeCompactionInputFilesForAllLevels()
/rocksdb-6.9/java/rocksjni/
Drocksjni.cc935 static const int kNotFound = -1; in rocksdb_get_helper_direct() local
992 return kNotFound; in rocksdb_get_helper_direct()
1454 static const int kNotFound = -1; in rocksdb_get_helper() local
1483 return kNotFound; in rocksdb_get_helper()
Dportal.h446 case ROCKSDB_NAMESPACE::Status::Code::kNotFound: in toJavaStatusCode()