HomeSort by relevance Sort by last modified time
    Searched defs:WriteBatch (Results 1 - 4 of 4) 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...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker.cc 49 SyncStatusCode WriteBatch(scoped_ptr<leveldb::WriteBatch> batch);
276 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
301 tracker_db_->WriteBatch(batch.Pass());
449 leveldb::WriteBatch* batch) {
601 SyncStatusCode LocalFileChangeTracker::TrackerDB::WriteBatch(
602 scoped_ptr<leveldb::WriteBatch> batch) {
  /external/chromium_org/content/browser/service_worker/
service_worker_database.cc 125 leveldb::WriteBatch* batch) {
148 leveldb::WriteBatch* batch) {
163 leveldb::WriteBatch* batch) {
169 leveldb::WriteBatch* batch) {
492 leveldb::WriteBatch batch;
545 return WriteBatch(&batch);
567 leveldb::WriteBatch batch;
569 return WriteBatch(&batch);
592 leveldb::WriteBatch batch;
594 return WriteBatch(&batch)
    [all...]

Completed in 48 milliseconds