Searched defs:WriteBatch (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dwrite_batch.h5 // 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 { class in namespace:leveldb
33 WriteBatch();
34 ~WriteBatch();
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dwrite_batch.cc5 // WriteBatch::rep_ :=
26 // WriteBatch header has an 8-byte sequence number followed by a 4-byte count.
29 WriteBatch::WriteBatch() { function in class:leveldb::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 (to
[all...]
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_change_tracker.cc46 SyncStatusCode WriteBatch(scoped_ptr<leveldb::WriteBatch> batch);
232 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
255 tracker_db_->WriteBatch(batch.Pass());
525 SyncStatusCode LocalFileChangeTracker::TrackerDB::WriteBatch( function in class:sync_file_system::LocalFileChangeTracker::TrackerDB
526 scoped_ptr<leveldb::WriteBatch> batch) {

Completed in 151 milliseconds