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

  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_transaction.cc 16 LevelDBTransaction::LevelDBTransaction(LevelDBDatabase* db)
24 LevelDBTransaction::Record::Record() : deleted(false) {}
25 LevelDBTransaction::Record::~Record() {}
27 void LevelDBTransaction::Clear() {
34 LevelDBTransaction::~LevelDBTransaction() { Clear(); }
36 void LevelDBTransaction::Set(const StringPiece& key,
56 void LevelDBTransaction::Put(const StringPiece& key, std::string* value) {
60 void LevelDBTransaction::Remove(const StringPiece& key)
    [all...]
leveldb_transaction.h 24 class CONTENT_EXPORT LevelDBTransaction
25 : public base::RefCounted<LevelDBTransaction> {
39 virtual ~LevelDBTransaction();
40 explicit LevelDBTransaction(LevelDBDatabase* db);
44 friend class base::RefCounted<LevelDBTransaction>;
74 static scoped_ptr<DataIterator> Create(LevelDBTransaction* transaction);
87 explicit DataIterator(LevelDBTransaction* transaction);
98 scoped_refptr<LevelDBTransaction> transaction);
110 explicit TransactionIterator(scoped_refptr<LevelDBTransaction> transaction);
118 scoped_refptr<LevelDBTransaction> transaction_
    [all...]

Completed in 70 milliseconds