Home
last modified time | relevance | path

Searched refs:imm_flush_needed (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/db/
Dmemtable_list_test.cc193 ASSERT_FALSE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
563 ASSERT_FALSE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
571 ASSERT_FALSE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
595 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
607 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
615 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
636 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
642 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
654 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
662 ASSERT_TRUE(list.imm_flush_needed.load(std::memory_order_acquire)); in TEST_F()
[all …]
Dmemtable_list.cc329 assert(imm_flush_needed.load(std::memory_order_relaxed)); in IsFlushPending()
354 imm_flush_needed.store(false, std::memory_order_release); in PickMemtablesToFlush()
382 imm_flush_needed.store(true, std::memory_order_release); in RollbackMemtableFlush()
526 imm_flush_needed.store(true, std::memory_order_release); in TryInstallMemtableFlushResults()
549 imm_flush_needed.store(true, std::memory_order_release); in Add()
741 imm->imm_flush_needed.store(true, std::memory_order_release); in InstallMemtableAtomicFlushResults()
767 imm_flush_needed.store(false, std::memory_order_release); in RemoveOldMemTables()
Dmemtable_list.h212 : imm_flush_needed(false), in MemTableList()
235 std::atomic<bool> imm_flush_needed; variable