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

  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_write_batch.cc 18 : write_batch_(new leveldb::WriteBatch) {}
28 write_batch_->Put(MakeSlice(key), MakeSlice(value));
32 write_batch_->Delete(MakeSlice(key));
35 void LevelDBWriteBatch::Clear() { write_batch_->Clear(); }
leveldb_write_batch.h 33 scoped_ptr<leveldb::WriteBatch> write_batch_; member in class:content::LevelDBWriteBatch
leveldb_transaction.cc 454 : db_(db), write_batch_(LevelDBWriteBatch::Create()), finished_(false) {}
457 write_batch_->Clear();
462 write_batch_->Remove(key);
468 if (!db_->Write(*write_batch_))
472 write_batch_->Clear();
leveldb_transaction.h 171 scoped_ptr<LevelDBWriteBatch> write_batch_; member in class:content::LevelDBWriteOnlyTransaction
leveldb_database.cc 382 db_->Write(write_options, write_batch.write_batch_.get());

Completed in 130 milliseconds