Home
last modified time | relevance | path

Searched refs:SnapshotCheckerResult (Results 1 – 7 of 7) sorted by relevance

/rocksdb-6.9/utilities/transactions/
Dsnapshot_checker.cc20 SnapshotCheckerResult WritePreparedSnapshotChecker::CheckInSnapshot( in CheckInSnapshot()
24 return SnapshotCheckerResult::kInSnapshot; in CheckInSnapshot()
33 SnapshotCheckerResult WritePreparedSnapshotChecker::CheckInSnapshot(
40 return SnapshotCheckerResult::kSnapshotReleased;
42 return in_snapshot ? SnapshotCheckerResult::kInSnapshot
43 : SnapshotCheckerResult::kNotInSnapshot;
/rocksdb-6.9/db/
Dsnapshot_checker.h11 enum class SnapshotCheckerResult : int { enum
23 virtual SnapshotCheckerResult CheckInSnapshot(
30 virtual SnapshotCheckerResult CheckInSnapshot( in CheckInSnapshot()
34 return SnapshotCheckerResult::kNotInSnapshot; in CheckInSnapshot()
52 virtual SnapshotCheckerResult CheckInSnapshot(
Ddb_merge_operator_test.cc27 SnapshotCheckerResult::kInSnapshot; in IsVisibleFullCheck()
493 SnapshotCheckerResult CheckInSnapshot( in TEST_F()
496 ? SnapshotCheckerResult::kInSnapshot in TEST_F()
497 : SnapshotCheckerResult::kNotInSnapshot; in TEST_F()
Dmerge_helper.cc175 SnapshotCheckerResult::kNotInSnapshot)) { in MergeUntil()
/rocksdb-6.9/db/compaction/
Dcompaction_iterator.cc19 SnapshotCheckerResult::kInSnapshot)))
25 SnapshotCheckerResult::kNotInSnapshot)))
722 if (res == SnapshotCheckerResult::kInSnapshot) { in findEarliestVisibleSnapshot()
724 } else if (res == SnapshotCheckerResult::kSnapshotReleased) { in findEarliestVisibleSnapshot()
751 while (UNLIKELY(in_snapshot == SnapshotCheckerResult::kSnapshotReleased)) { in IsInEarliestSnapshot()
766 assert(in_snapshot != SnapshotCheckerResult::kSnapshotReleased); in IsInEarliestSnapshot()
767 if (in_snapshot == SnapshotCheckerResult::kSnapshotReleased) { in IsInEarliestSnapshot()
771 return in_snapshot == SnapshotCheckerResult::kInSnapshot; in IsInEarliestSnapshot()
Dcompaction_iterator_test.cc191 SnapshotCheckerResult CheckInSnapshot( in CheckInSnapshot()
195 ? SnapshotCheckerResult::kInSnapshot in CheckInSnapshot()
196 : SnapshotCheckerResult::kNotInSnapshot; in CheckInSnapshot()
200 ? SnapshotCheckerResult::kInSnapshot in CheckInSnapshot()
201 : SnapshotCheckerResult::kNotInSnapshot; in CheckInSnapshot()
Dcompaction_iterator.h143 SnapshotCheckerResult::kInSnapshot; in KeyCommitted()