Home
last modified time | relevance | path

Searched refs:BatchResult (Results 1 – 11 of 11) sorted by relevance

/rocksdb-6.9/include/rocksdb/
Dtransaction_log.h56 struct BatchResult { struct
63 BatchResult() {} in BatchResult() argument
65 ~BatchResult() {} in ~BatchResult() argument
67 BatchResult(const BatchResult&) = delete;
69 BatchResult& operator=(const BatchResult&) = delete; argument
71 BatchResult(BatchResult&& bResult) in BatchResult() function
75 BatchResult& operator=(BatchResult&& bResult) {
106 virtual BatchResult GetBatch() = 0;
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DTransactionLogIterator.java50 public BatchResult getBatch() { in getBatch()
69 public static final class BatchResult { class in TransactionLogIterator
77 public BatchResult(final long sequenceNumber, in BatchResult() method in TransactionLogIterator.BatchResult
111 private native BatchResult getBatch(long handle); in getBatch()
/rocksdb-6.9/db/
Dtransaction_log_impl.cc70 BatchResult TransactionLogIteratorImpl::GetBatch() { in GetBatch()
72 BatchResult result; in GetBatch()
Dtransaction_log_impl.h74 virtual BatchResult GetBatch() override;
Ddb_log_iter_test.cc40 BatchResult res; in ReadRecords()
Dwal_manager_test.cc201 BatchResult res; in CountRecords()
Dc.cc53 using ROCKSDB_NAMESPACE::BatchResult;
1043 BatchResult wal_batch = iter->rep->GetBatch(); in rocksdb_wal_iter_get_batch()
/rocksdb-6.9/java/rocksjni/
Dtransaction_log.cc75 ROCKSDB_NAMESPACE::BatchResult batch_result = in Java_org_rocksdb_TransactionLogIterator_getBatch()
Dportal.h4366 ROCKSDB_NAMESPACE::BatchResult& batch_result) { in construct()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DTransactionLogIteratorTest.java71 final TransactionLogIterator.BatchResult batchResult = in getBatch()
/rocksdb-6.9/tools/
Ddb_repl_stress.cc82 BatchResult res = iter->GetBatch(); in ReplicationThreadBody()