HomeSort by relevance Sort by last modified time
    Searched defs:WriteBatch (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
write_batch.h 5 // WriteBatch holds a collection of updates to apply atomically to a DB.
8 // to the WriteBatch. For example, the value of "key" will be "v3"
16 // Multiple threads can invoke const methods on a WriteBatch without
18 // non-const method, all threads accessing the same WriteBatch must use
31 class WriteBatch {
33 WriteBatch();
34 ~WriteBatch();
  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch.cc 5 // WriteBatch::rep_ :=
26 // WriteBatch header has an 8-byte sequence number followed by a 4-byte count.
29 WriteBatch::WriteBatch() {
33 WriteBatch::~WriteBatch() { }
35 WriteBatch::Handler::~Handler() { }
37 void WriteBatch::Clear() {
42 Status WriteBatch::Iterate(Handler* handler) const {
45 return Status::Corruption("malformed WriteBatch (too small)")
    [all...]

Completed in 419 milliseconds