Searched defs:object_store_id (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_index_writer.cc35 int64 object_store_id,
46 object_store_id,
72 int64 object_store_id) const {
79 object_store_id,
93 int64 object_store_id,
108 object_store_id,
31 VerifyIndexKeys( IndexedDBBackingStore* backing_store, IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, bool* can_add_keys, const IndexedDBKey& primary_key, base::string16* error_message) const argument
89 AddingKeyAllowed( IndexedDBBackingStore* backing_store, IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& index_key, const IndexedDBKey& primary_key, bool* allowed) const argument
H A Dindexed_db_fake_backing_store.cc66 int64 object_store_id,
76 int64 object_store_id) {
83 int64 object_store_id,
94 int64 object_store_id) {
100 int64 object_store_id,
107 int64 object_store_id,
114 int64 object_store_id,
122 int64 object_store_id,
132 int64 object_store_id,
143 int64 object_store_id,
63 CreateObjectStore( Transaction*, int64 database_id, int64 object_store_id, const base::string16& name, const IndexedDBKeyPath&, bool auto_increment) argument
73 DeleteObjectStore( Transaction* transaction, int64 database_id, int64 object_store_id) argument
80 PutRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, IndexedDBValue& value, ScopedVector<webkit_blob::BlobDataHandle>* handles, RecordIdentifier* record) argument
91 ClearObjectStore( Transaction*, int64 database_id, int64 object_store_id) argument
97 DeleteRecord( Transaction*, int64 database_id, int64 object_store_id, const RecordIdentifier&) argument
104 GetKeyGeneratorCurrentNumber( Transaction*, int64 database_id, int64 object_store_id, int64* current_number) argument
111 MaybeUpdateKeyGeneratorCurrentNumber( Transaction*, int64 database_id, int64 object_store_id, int64 new_number, bool check_current) argument
119 KeyExistsInObjectStore( Transaction*, int64 database_id, int64 object_store_id, const IndexedDBKey&, RecordIdentifier* found_record_identifier, bool* found) argument
129 CreateIndex( Transaction*, int64 database_id, int64 object_store_id, int64 index_id, const base::string16& name, const IndexedDBKeyPath&, bool is_unique, bool is_multi_entry) argument
141 DeleteIndex(Transaction*, int64 database_id, int64 object_store_id, int64 index_id) argument
147 PutIndexDataForRecord( Transaction*, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey&, const RecordIdentifier&) argument
161 OpenObjectStoreKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection, leveldb::Status* s) argument
171 OpenObjectStoreCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection, leveldb::Status* s) argument
181 OpenIndexKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection, leveldb::Status* s) argument
192 OpenIndexCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection, leveldb::Status* s) argument
[all...]
H A Dindexed_db_backing_store.h148 int64 object_store_id,
155 int64 object_store_id) WARN_UNUSED_RESULT;
190 int64 object_store_id,
196 int64 object_store_id,
204 int64 object_store_id) WARN_UNUSED_RESULT;
208 int64 object_store_id,
213 int64 object_store_id,
218 int64 object_store_id,
223 int64 object_store_id,
229 int64 object_store_id,
289 int64 object_store_id; member in struct:content::IndexedDBBackingStore::Cursor::CursorOptions
381 int64 object_store_id() const { return object_store_id_; } function in class:content::IndexedDBBackingStore::BlobChangeRecord
[all...]
H A Dindexed_db_backing_store_unittest.cc694 // and object_store_id still work.
789 const int64 object_store_id = 1; local
813 object_store_id,
820 &transaction1, 0, object_store_id, m_key1, m_value1, &handles, &record);
831 object_store_id,
836 &transaction1, 0, object_store_id, m_key1, &result_value);
842 object_store_id,
849 object_store_id,
855 &transaction1, database_id, object_store_id, 0, m_key1, &new_primary_key);
860 object_store_id,
880 const int64 object_store_id = 99; local
[all...]
H A Dindexed_db_leveldb_coding.h95 KeyPrefix(int64 database_id, int64 object_store_id);
96 KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id);
98 int64 object_store_id,
145 int64 object_store_id,
148 IsValidObjectStoreId(object_store_id) && IsValidIndexId(index_id);
150 static bool ValidIds(int64 database_id, int64 object_store_id) { argument
152 IsValidObjectStoreId(object_store_id);
165 int64 object_store_id,
170 int64 object_store_id,
269 int64 object_store_id,
144 ValidIds(int64 database_id, int64 object_store_id, int64 index_id) argument
434 int64 object_store_id() const { return object_store_id_; } function in class:content::BlobEntryKey
[all...]
H A Dindexed_db_database.cc140 void IndexedDBDatabase::RemoveObjectStore(int64 object_store_id) { argument
141 DCHECK(metadata_.object_stores.find(object_store_id) !=
143 metadata_.object_stores.erase(object_store_id);
146 void IndexedDBDatabase::AddIndex(int64 object_store_id, argument
149 DCHECK(metadata_.object_stores.find(object_store_id) !=
152 metadata_.object_stores[object_store_id];
160 metadata_.object_stores[object_store_id] = object_store;
163 void IndexedDBDatabase::RemoveIndex(int64 object_store_id, int64 index_id) { argument
164 DCHECK(metadata_.object_stores.find(object_store_id) !=
167 metadata_.object_stores[object_store_id];
223 ValidateObjectStoreIdAndIndexId(int64 object_store_id, int64 index_id) const argument
236 ValidateObjectStoreIdAndOptionalIndexId( int64 object_store_id, int64 index_id) const argument
251 ValidateObjectStoreIdAndNewIndexId( int64 object_store_id, int64 index_id) const argument
265 CreateObjectStore(int64 transaction_id, int64 object_store_id, const base::string16& name, const IndexedDBKeyPath& key_path, bool auto_increment) argument
317 DeleteObjectStore(int64 transaction_id, int64 object_store_id) argument
334 CreateIndex(int64 transaction_id, int64 object_store_id, int64 index_id, const base::string16& name, const IndexedDBKeyPath& key_path, bool unique, bool multi_entry) argument
379 CreateIndexAbortOperation( int64 object_store_id, int64 index_id, IndexedDBTransaction* transaction) argument
390 DeleteIndex(int64 transaction_id, int64 object_store_id, int64 index_id) argument
409 DeleteIndexOperation( int64 object_store_id, int64 index_id, IndexedDBTransaction* transaction) argument
445 DeleteIndexAbortOperation( int64 object_store_id, const IndexedDBIndexMetadata& index_metadata, IndexedDBTransaction* transaction) argument
485 Get(int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, bool key_only, scoped_refptr<IndexedDBCallbacks> callbacks) argument
509 GetOperation( int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, indexed_db::CursorType cursor_type, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
671 GenerateKey( IndexedDBBackingStore* backing_store, IndexedDBTransaction* transaction, int64 database_id, int64 object_store_id) argument
694 UpdateKeyGenerator(IndexedDBBackingStore* backing_store, IndexedDBTransaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, bool check_current) argument
711 int64 object_store_id; member in struct:content::IndexedDBDatabase::PutOperationParams
723 Put(int64 transaction_id, int64 object_store_id, IndexedDBValue* value, ScopedVector<webkit_blob::BlobDataHandle>* handles, scoped_ptr<IndexedDBKey> key, PutMode put_mode, scoped_refptr<IndexedDBCallbacks> callbacks, const std::vector<IndexKeys>& index_keys) argument
890 SetIndexKeys(int64 transaction_id, int64 object_store_id, scoped_ptr<IndexedDBKey> primary_key, const std::vector<IndexKeys>& index_keys) argument
994 int64 object_store_id; member in struct:content::IndexedDBDatabase::OpenCursorOperationParams
1006 OpenCursor( int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, indexed_db::CursorDirection direction, bool key_only, TaskType task_type, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1118 Count(int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1139 CountOperation( int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
1191 DeleteRange( int64 transaction_id, int64 object_store_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1212 DeleteRangeOperation( int64 object_store_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
1239 Clear(int64 transaction_id, int64 object_store_id, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1255 ClearOperation( int64 object_store_id, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
1275 DeleteObjectStoreOperation( int64 object_store_id, IndexedDBTransaction* transaction) argument
1736 CreateObjectStoreAbortOperation( int64 object_store_id, IndexedDBTransaction* transaction) argument
[all...]
H A Dindexed_db_dispatcher_host.cc509 params.object_store_id,
524 int64 object_store_id) {
533 parent_->HostTransactionId(transaction_id), object_store_id);
597 params.object_store_id,
669 params.object_store_id,
695 params.object_store_id,
703 int64 object_store_id,
713 parent_->HostTransactionId(transaction_id), object_store_id, index_ids);
729 params.object_store_id,
751 params.object_store_id,
521 OnDeleteObjectStore( int32 ipc_database_id, int64 transaction_id, int64 object_store_id) argument
700 OnSetIndexesReady( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const std::vector<int64>& index_ids) argument
775 OnClear( int32 ipc_thread_id, int32 ipc_callbacks_id, int32 ipc_database_id, int64 transaction_id, int64 object_store_id) argument
857 OnDeleteIndex( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id) argument
[all...]
H A Dindexed_db_leveldb_coding.cc1139 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id) argument
1141 object_store_id_(object_store_id),
1144 DCHECK(KeyPrefix::IsValidObjectStoreId(object_store_id));
1147 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id) argument
1149 object_store_id_(object_store_id),
1152 DCHECK(KeyPrefix::IsValidObjectStoreId(object_store_id));
1158 int64 object_store_id,
1161 object_store_id_(object_store_id),
1165 DCHECK(KeyPrefix::IsValidObjectStoreId(object_store_id));
1169 int64 object_store_id,
1156 KeyPrefix(enum Type type, int64 database_id, int64 object_store_id, int64 index_id) argument
1168 CreateWithSpecialIndex(int64 database_id, int64 object_store_id, int64 index_id) argument
1181 IsValidObjectStoreId(int64 object_store_id) argument
1237 EncodeInternal(int64 database_id, int64 object_store_id, int64 index_id) argument
1461 Encode(int64 database_id, int64 object_store_id, unsigned char meta_data_type) argument
1478 EncodeMaxKey(int64 database_id, int64 object_store_id) argument
1521 Encode(int64 database_id, int64 object_store_id, int64 index_id, unsigned char meta_data_type) argument
1534 EncodeMaxKey(int64 database_id, int64 object_store_id) argument
1542 EncodeMaxKey(int64 database_id, int64 object_store_id, int64 index_id) argument
1584 Encode(int64 database_id, int64 object_store_id) argument
1630 Encode(int64 database_id, int64 object_store_id, int64 index_id) argument
1641 EncodeMaxKey(int64 database_id, int64 object_store_id) argument
1721 Encode(int64 database_id, int64 object_store_id, const base::string16& index_name) argument
1755 Encode(int64 database_id, int64 object_store_id, const std::string encoded_user_key) argument
1766 Encode(int64 database_id, int64 object_store_id, const IndexedDBKey& user_key) argument
1800 Encode(int64 database_id, int64 object_store_id, const std::string& encoded_key) argument
1810 Encode(int64 database_id, int64 object_store_id, const IndexedDBKey& user_key) argument
1871 EncodeMinKeyForObjectStore(int64 database_id, int64 object_store_id) argument
1877 EncodeStopKeyForObjectStore(int64 database_id, int64 object_store_id) argument
1890 Encode(int64 database_id, int64 object_store_id, const IndexedDBKey& user_key) argument
1898 Encode(int64 database_id, int64 object_store_id, const std::string& encoded_user_key) argument
1947 Encode(int64 database_id, int64 object_store_id, int64 index_id, const std::string& encoded_user_key, const std::string& encoded_primary_key, int64 sequence_number) argument
1961 Encode(int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& user_key) argument
1971 Encode(int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& user_key, const IndexedDBKey& user_primary_key) argument
1988 EncodeMinKey(int64 database_id, int64 object_store_id, int64 index_id) argument
1995 EncodeMaxKey(int64 database_id, int64 object_store_id, int64 index_id) argument
[all...]
H A Dindexed_db_backing_store.cc1346 int64 object_store_id,
1364 database_id, object_store_id, user_key, NULL, NULL);
1372 int64 object_store_id) {
1375 BlobEntryKey::EncodeMinKeyForObjectStore(database_id, object_store_id);
1377 BlobEntryKey::EncodeStopKeyForObjectStore(database_id, object_store_id);
1379 transaction, database_id, object_store_id, start_key, stop_key, true);
1444 int64 object_store_id,
1454 if (meta_data_key.ObjectStoreId() != object_store_id)
1493 int64 object_store_id = meta_data_key.ObjectStoreId(); local
1509 object_store_id,
1343 DeleteBlobsInRange( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const std::string& start_key, const std::string& end_key, bool upper_open) argument
1369 DeleteBlobsInObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id) argument
1442 CheckObjectStoreAndMetaDataType(const LevelDBIterator* it, const std::string& stop_key, int64 object_store_id, int64 meta_data_type) argument
1646 SetMaxObjectStoreId( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id) argument
1670 CreateObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const base::string16& name, const IndexedDBKeyPath& key_path, bool auto_increment) argument
1721 DeleteObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id) argument
1786 GetRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, IndexedDBValue* record) argument
1827 GetNewVersionNumber( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64* new_version_number) argument
1859 PutRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, IndexedDBValue& value, ScopedVector<webkit_blob::BlobDataHandle>* handles, RecordIdentifier* record_identifier) argument
1908 ClearObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id) argument
1929 DeleteRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const RecordIdentifier& record_identifier) argument
1953 DeleteRange( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range) argument
2016 GetKeyGeneratorCurrentNumber( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64* key_generator_current_number) argument
2088 MaybeUpdateKeyGeneratorCurrentNumber( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 new_number, bool check_current) argument
2117 KeyExistsInObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, RecordIdentifier* found_record_identifier, bool* found) argument
2468 GetIndexes( int64 database_id, int64 object_store_id, IndexedDBObjectStoreMetadata::IndexMap* indexes) argument
2672 SetMaxIndexId( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64 index_id) argument
2699 CreateIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const base::string16& name, const IndexedDBKeyPath& key_path, bool is_unique, bool is_multi_entry) argument
2734 DeleteIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id) argument
2766 PutIndexDataForRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& key, const RecordIdentifier& record_identifier) argument
2828 VersionExists(LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64 version, const std::string& encoded_primary_key, bool* exists) argument
2854 FindKeyInIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& key, std::string* found_encoded_primary_key, bool* found) argument
2913 GetPrimaryKeyViaIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& key, scoped_ptr<IndexedDBKey>* primary_key) argument
2951 KeyExistsInIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& index_key, scoped_ptr<IndexedDBKey>* found_primary_key, bool* exists) argument
3571 ObjectStoreCursorOptions( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& range, indexed_db::CursorDirection direction, IndexedDBBackingStore::Cursor::CursorOptions* cursor_options) argument
3643 IndexCursorOptions( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& range, indexed_db::CursorDirection direction, IndexedDBBackingStore::Cursor::CursorOptions* cursor_options) argument
3717 OpenObjectStoreCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& range, indexed_db::CursorDirection direction, leveldb::Status* s) argument
3744 OpenObjectStoreKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& range, indexed_db::CursorDirection direction, leveldb::Status* s) argument
3771 OpenIndexKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& range, indexed_db::CursorDirection direction, leveldb::Status* s) argument
3800 OpenIndexCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& range, indexed_db::CursorDirection direction, leveldb::Status* s) argument
4135 BlobChangeRecord( const std::string& key, int64 object_store_id) argument
4170 PutBlobInfoIfNeeded( int64 database_id, int64 object_store_id, const std::string& object_store_data_key, std::vector<IndexedDBBlobInfo>* blob_info, ScopedVector<webkit_blob::BlobDataHandle>* handles) argument
4205 PutBlobInfo( int64 database_id, int64 object_store_id, const std::string& object_store_data_key, std::vector<IndexedDBBlobInfo>* blob_info, ScopedVector<webkit_blob::BlobDataHandle>* handles) argument
[all...]
/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_dispatcher_unittest.cc85 const int64 object_store_id = 2; local
92 object_store_id,
115 const int64 object_store_id = 2; local
121 object_store_id,
161 const int64 object_store_id = 2; local
176 object_store_id,
217 object_store_id,
271 const int32 object_store_id = 0; local
300 object_store_id,
312 object_store_id,
[all...]
H A Dwebidbdatabase_impl.cc55 long long object_store_id,
62 params.object_store_id = object_store_id;
72 long long object_store_id) {
74 ipc_database_id_, transaction_id, object_store_id));
96 long long object_store_id,
105 object_store_id,
113 long long object_store_id,
125 object_store_id,
137 long long object_store_id,
54 createObjectStore(long long transaction_id, long long object_store_id, const WebString& name, const WebIDBKeyPath& key_path, bool auto_increment) argument
71 deleteObjectStore(long long transaction_id, long long object_store_id) argument
95 get(long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, bool key_only, WebIDBCallbacks* callbacks) argument
112 put(long long transaction_id, long long object_store_id, const blink::WebData& value, const blink::WebVector<WebBlobInfo>& web_blob_info, const WebIDBKey& key, PutMode put_mode, WebIDBCallbacks* callbacks, const WebVector<long long>& web_index_ids, const WebVector<WebIndexKeys>& web_index_keys) argument
135 setIndexKeys( long long transaction_id, long long object_store_id, const WebIDBKey& primary_key, const WebVector<long long>& index_ids, const WebVector<WebIndexKeys>& index_keys) argument
161 setIndexesReady( long long transaction_id, long long object_store_id, const WebVector<long long>& web_index_ids) argument
171 openCursor(long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, WebIDBCursor::Direction direction, bool key_only, TaskType task_type, WebIDBCallbacks* callbacks) argument
193 count(long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
209 deleteRange(long long transaction_id, long long object_store_id, const WebIDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
223 clear(long long transaction_id, long long object_store_id, WebIDBCallbacks* callbacks) argument
232 createIndex(long long transaction_id, long long object_store_id, long long index_id, const WebString& name, const WebIDBKeyPath& key_path, bool unique, bool multi_entry) argument
252 deleteIndex(long long transaction_id, long long object_store_id, long long index_id) argument
[all...]
H A Dindexed_db_dispatcher.cc306 int64 object_store_id,
316 params.object_store_id = object_store_id;
326 int64 object_store_id,
351 params.object_store_id = object_store_id;
391 int64 object_store_id,
403 params.object_store_id = object_store_id;
419 int64 object_store_id,
303 RequestIDBDatabaseGet( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, bool key_only, WebIDBCallbacks* callbacks) argument
323 RequestIDBDatabasePut( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const WebData& value, const blink::WebVector<WebBlobInfo>& web_blob_info, const IndexedDBKey& key, WebIDBDatabase::PutMode put_mode, WebIDBCallbacks* callbacks, const WebVector<long long>& index_ids, const WebVector<WebVector<WebIDBKey> >& index_keys) argument
388 RequestIDBDatabaseOpenCursor( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, WebIDBCursor::Direction direction, bool key_only, WebIDBDatabase::TaskType task_type, WebIDBCallbacks* callbacks) argument
416 RequestIDBDatabaseCount( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
434 RequestIDBDatabaseDeleteRange( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
450 RequestIDBDatabaseClear( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, WebIDBCallbacks* callbacks_ptr) argument
[all...]

Completed in 229 milliseconds