Home
last modified time | relevance | path

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

/rocksdb-6.9/db/
Dtransaction_log_impl.cc27 started_(false), in TransactionLogIteratorImpl()
80 bool TransactionLogIteratorImpl::Valid() { return started_ && is_valid_; } in Valid()
93 started_ = false; in SeekToStartSequence()
124 started_ = true; // set started_ as we could seek till starting sequence in SeekToStartSequence()
158 if (!internal && !started_) { in NextImpl()
174 assert(internal || started_); in NextImpl()
176 assert(!internal || !started_); in NextImpl()
178 if (internal && !started_) { in NextImpl()
179 started_ = true; in NextImpl()
230 if (started_ && !IsBatchExpected(batch.get(), expected_seq)) { in UpdateCurrentWriteBatch()
Dlistener_test.cc700 started_[i] = finished_[i] = failure_[i] = 0; in TableFileCreationListener()
722 ASSERT_EQ(started_[0], flush_started); in CheckAndResetCounters()
725 ASSERT_EQ(started_[1], compaction_started); in CheckAndResetCounters()
729 started_[i] = finished_[i] = failure_[i] = 0; in CheckAndResetCounters()
737 started_[idx]++; in OnTableFileCreationStarted()
768 int started_[2]; member in ROCKSDB_NAMESPACE::TableFileCreationListener
Dtransaction_log_impl.h83 bool started_; variable