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

  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_db_migration_util.cc 10 #include "third_party/leveldatabase/src/include/leveldb/write_batch.h"
141 leveldb::WriteBatch write_batch; local
142 write_batch.Put(kDatabaseVersionKey, "1");
159 write_batch.Put(new_key, itr->value());
160 write_batch.Delete(key);
164 db->Write(leveldb::WriteOptions(), &write_batch));
200 leveldb::WriteBatch write_batch; local
201 write_batch.Put(kDatabaseVersionKey, "2");
209 write_batch.Put(key, RemoveWapiIdPrefix(itr->value().ToString()));
223 write_batch.Put(key, metadata_string)
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.h 61 bool Write(const LevelDBWriteBatch& write_batch);
leveldb_transaction.cc 103 scoped_ptr<LevelDBWriteBatch> write_batch = LevelDBWriteBatch::Create(); local
111 write_batch->Put(node->key, node->value);
113 write_batch->Remove(node->key);
117 if (!db_->Write(*write_batch))
leveldb_database.cc 377 bool LevelDBDatabase::Write(const LevelDBWriteBatch& write_batch) {
382 db_->Write(write_options, write_batch.write_batch_.get());
  /external/chromium_org/third_party/leveldatabase/
leveldatabase.target.darwin-arm.mk 40 third_party/leveldatabase/src/db/write_batch.cc \
leveldatabase.target.darwin-mips.mk 40 third_party/leveldatabase/src/db/write_batch.cc \
leveldatabase.target.darwin-x86.mk 40 third_party/leveldatabase/src/db/write_batch.cc \
leveldatabase.target.linux-arm.mk 40 third_party/leveldatabase/src/db/write_batch.cc \
leveldatabase.target.linux-mips.mk 40 third_party/leveldatabase/src/db/write_batch.cc \
leveldatabase.target.linux-x86.mk 40 third_party/leveldatabase/src/db/write_batch.cc \

Completed in 2319 milliseconds