Home | History | Annotate | Download | only in indexed_db

Lines Matching refs:backing_store_

28     backing_store_ = IndexedDBBackingStore::OpenInMemory(file_identifier);
40 scoped_refptr<IndexedDBBackingStore> backing_store_;
53 IndexedDBBackingStore::Transaction transaction1(backing_store_);
56 bool ok = backing_store_->PutRecord(
63 IndexedDBBackingStore::Transaction transaction2(backing_store_);
67 backing_store_->GetRecord(&transaction2, 1, 1, m_key1, &result_value);
88 IndexedDBBackingStore::Transaction transaction1(backing_store_);
91 bool ok = backing_store_->PutRecord(&transaction1,
99 ok = backing_store_->PutIndexDataForRecord(&transaction1,
107 ok = backing_store_->PutIndexDataForRecord(&transaction1,
120 IndexedDBBackingStore::Transaction transaction2(backing_store_);
123 bool ok = backing_store_->GetRecord(&transaction2,
132 ok = backing_store_->GetPrimaryKeyViaIndex(&transaction2,
140 ok = backing_store_->GetPrimaryKeyViaIndex(&transaction2,
164 IndexedDBBackingStore::Transaction transaction1(backing_store_);
168 bool ok = backing_store_->PutRecord(&transaction1,
175 ok = backing_store_->PutRecord(
178 ok = backing_store_->PutRecord(&transaction1,
185 ok = backing_store_->PutRecord(
189 ok = backing_store_->GetRecord(
192 ok = backing_store_->GetRecord(
195 ok = backing_store_->GetRecord(&transaction1,
201 ok = backing_store_->GetRecord(
206 ok = backing_store_->GetPrimaryKeyViaIndex(&transaction1,
213 ok = backing_store_->GetPrimaryKeyViaIndex(&transaction1,
220 ok = backing_store_->GetPrimaryKeyViaIndex(
224 ok = backing_store_->GetPrimaryKeyViaIndex(&transaction1,
231 ok = backing_store_->GetPrimaryKeyViaIndex(&transaction1,
259 bool ok = backing_store_->CreateIDBDatabaseMetaData(
264 IndexedDBBackingStore::Transaction transaction(backing_store_);
267 ok = backing_store_->CreateObjectStore(&transaction,
275 ok = backing_store_->CreateIndex(&transaction,
292 bool ok = backing_store_->GetIDBDatabaseMetaData(
302 ok = backing_store_->GetObjectStores(database.id, &database.object_stores);