Searched refs:LevelDBTransaction (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc18 LevelDBTransaction::LevelDBTransaction(LevelDBDatabase* db) function in class:content::LevelDBTransaction
26 LevelDBTransaction::Record::Record() : deleted(false) {}
27 LevelDBTransaction::Record::~Record() {}
29 void LevelDBTransaction::Clear() {
36 LevelDBTransaction::~LevelDBTransaction() { Clear(); }
38 void LevelDBTransaction::Set(const StringPiece& key,
58 void LevelDBTransaction::Put(const StringPiece& key, std::string* value) {
62 void LevelDBTransaction
[all...]
H A Dleveldb_transaction.h24 class CONTENT_EXPORT LevelDBTransaction class in namespace:content
25 : public base::RefCounted<LevelDBTransaction> {
38 virtual ~LevelDBTransaction();
39 explicit LevelDBTransaction(LevelDBDatabase* db);
43 friend class base::RefCounted<LevelDBTransaction>;
73 static scoped_ptr<DataIterator> Create(LevelDBTransaction* transaction);
86 explicit DataIterator(LevelDBTransaction* transaction);
97 scoped_refptr<LevelDBTransaction> transaction);
111 explicit TransactionIterator(scoped_refptr<LevelDBTransaction> transaction);
119 scoped_refptr<LevelDBTransaction> transaction
[all...]
H A Dleveldb_unittest.cc105 scoped_refptr<LevelDBTransaction> transaction =
106 new LevelDBTransaction(leveldb.get());
173 scoped_refptr<LevelDBTransaction> transaction =
174 new LevelDBTransaction(leveldb.get());
217 scoped_refptr<LevelDBTransaction> transaction =
218 new LevelDBTransaction(leveldb.get());
H A Dleveldb_database.h36 friend class LevelDBTransaction;
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_class_factory.cc26 LevelDBTransaction* IndexedDBClassFactory::CreateLevelDBTransaction(
28 return new LevelDBTransaction(db);
H A Dindexed_db_class_factory.h20 class LevelDBTransaction;
34 virtual LevelDBTransaction* CreateLevelDBTransaction(LevelDBDatabase* db);
H A Dmock_browsertest_indexed_db_class_factory.h14 class LevelDBTransaction;
34 virtual LevelDBTransaction* CreateLevelDBTransaction(
H A Dmock_browsertest_indexed_db_class_factory.cc42 class LevelDBTestTansaction : public LevelDBTransaction {
47 : LevelDBTransaction(db),
60 return LevelDBTransaction::Get(key, value, found);
69 return LevelDBTransaction::Commit();
82 class LevelDBTraceTansaction : public LevelDBTransaction {
85 : LevelDBTransaction(db),
93 return LevelDBTransaction::Get(key, value, found);
98 return LevelDBTransaction::Commit();
110 const std::string LevelDBTraceTansaction::s_class_name = "LevelDBTransaction";
201 LevelDBTransaction*
[all...]
H A Dindexed_db_backing_store.cc183 static void PutBool(LevelDBTransaction* transaction,
222 static void PutInt(LevelDBTransaction* transaction,
248 static void PutVarInt(LevelDBTransaction* transaction,
275 static void PutString(LevelDBTransaction* transaction,
283 static void PutIDBKeyPath(LevelDBTransaction* transaction,
357 scoped_refptr<LevelDBTransaction> transaction =
505 LevelDBTransaction* leveldb_transaction,
534 LevelDBTransaction* leveldb_transaction,
580 static void ClearBlobJournal(LevelDBTransaction* leveldb_transaction,
586 LevelDBTransaction* leveldb_transactio
[all...]
H A Dindexed_db_backing_store.h147 LevelDBTransaction* transaction() { return transaction_.get(); }
225 scoped_refptr<LevelDBTransaction> transaction_;

Completed in 109 milliseconds