HomeSort by relevance Sort by last modified time
    Searched refs:WriteBatchInternal (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch_test.cc 20 Status s = WriteBatchInternal::InsertInto(b, mem);
48 } else if (count != WriteBatchInternal::Count(b)) {
60 ASSERT_EQ(0, WriteBatchInternal::Count(&batch));
68 WriteBatchInternal::SetSequence(&batch, 100);
69 ASSERT_EQ(100, WriteBatchInternal::Sequence(&batch));
70 ASSERT_EQ(3, WriteBatchInternal::Count(&batch));
81 WriteBatchInternal::SetSequence(&batch, 200);
82 Slice contents = WriteBatchInternal::Contents(&batch);
83 WriteBatchInternal::SetContents(&batch,
92 WriteBatchInternal::SetSequence(&b1, 200)
    [all...]
write_batch.cc 75 if (found != WriteBatchInternal::Count(this)) {
82 int WriteBatchInternal::Count(const WriteBatch* b) {
86 void WriteBatchInternal::SetCount(WriteBatch* b, int n) {
90 SequenceNumber WriteBatchInternal::Sequence(const WriteBatch* b) {
94 void WriteBatchInternal::SetSequence(WriteBatch* b, SequenceNumber seq) {
99 WriteBatchInternal::SetCount(this, WriteBatchInternal::Count(this) + 1);
106 WriteBatchInternal::SetCount(this, WriteBatchInternal::Count(this) + 1);
128 Status WriteBatchInternal::InsertInto(const WriteBatch* b
    [all...]
write_batch_internal.h 14 // WriteBatchInternal provides static methods for manipulating a
16 class WriteBatchInternal {
leveldb_main.cc 94 WriteBatchInternal::SetContents(&batch, record);
96 static_cast<unsigned long long>(WriteBatchInternal::Sequence(&batch)));
db_impl.cc 416 WriteBatchInternal::SetContents(&batch, record);
422 status = WriteBatchInternal::InsertInto(&batch, mem);
428 WriteBatchInternal::Sequence(&batch) +
429 WriteBatchInternal::Count(&batch) - 1;
    [all...]
repair.cc 209 WriteBatchInternal::SetContents(&batch, record);
210 status = WriteBatchInternal::InsertInto(&batch, mem);
212 counter += WriteBatchInternal::Count(&batch);
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
write_batch.h 55 friend class WriteBatchInternal;
  /external/chromium_org/third_party/leveldatabase/src/table/
table_test.cc 767 WriteBatchInternal::SetSequence(&batch, 100);
772 ASSERT_TRUE(WriteBatchInternal::InsertInto(&batch, memtable).ok());

Completed in 100 milliseconds