Searched refs:object_store_id (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_database.h65 void RemoveObjectStore(int64 object_store_id);
66 void AddIndex(int64 object_store_id,
69 void RemoveIndex(int64 object_store_id, int64 index_id);
76 int64 object_store_id,
80 void DeleteObjectStore(int64 transaction_id, int64 object_store_id);
98 int64 object_store_id,
104 void DeleteIndex(int64 transaction_id, int64 object_store_id, int64 index_id);
120 int64 object_store_id,
126 int64 object_store_id,
134 int64 object_store_id,
[all...]
H A Dindexed_db_database.cc141 void IndexedDBDatabase::RemoveObjectStore(int64 object_store_id) { argument
142 DCHECK(metadata_.object_stores.find(object_store_id) !=
144 metadata_.object_stores.erase(object_store_id);
147 void IndexedDBDatabase::AddIndex(int64 object_store_id, argument
150 DCHECK(metadata_.object_stores.find(object_store_id) !=
153 metadata_.object_stores[object_store_id];
161 metadata_.object_stores[object_store_id] = object_store;
164 void IndexedDBDatabase::RemoveIndex(int64 object_store_id, int64 index_id) { argument
165 DCHECK(metadata_.object_stores.find(object_store_id) !=
168 metadata_.object_stores[object_store_id];
224 ValidateObjectStoreIdAndIndexId(int64 object_store_id, int64 index_id) const argument
237 ValidateObjectStoreIdAndOptionalIndexId( int64 object_store_id, int64 index_id) const argument
252 ValidateObjectStoreIdAndNewIndexId( int64 object_store_id, int64 index_id) const argument
266 CreateObjectStore(int64 transaction_id, int64 object_store_id, const base::string16& name, const IndexedDBKeyPath& key_path, bool auto_increment) argument
318 DeleteObjectStore(int64 transaction_id, int64 object_store_id) argument
335 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
380 CreateIndexAbortOperation( int64 object_store_id, int64 index_id, IndexedDBTransaction* transaction) argument
391 DeleteIndex(int64 transaction_id, int64 object_store_id, int64 index_id) argument
410 DeleteIndexOperation( int64 object_store_id, int64 index_id, IndexedDBTransaction* transaction) argument
446 DeleteIndexAbortOperation( int64 object_store_id, const IndexedDBIndexMetadata& index_metadata, IndexedDBTransaction* transaction) argument
493 Get(int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, bool key_only, scoped_refptr<IndexedDBCallbacks> callbacks) argument
517 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
679 GenerateKey( IndexedDBBackingStore* backing_store, IndexedDBTransaction* transaction, int64 database_id, int64 object_store_id) argument
702 UpdateKeyGenerator(IndexedDBBackingStore* backing_store, IndexedDBTransaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, bool check_current) argument
719 int64 object_store_id; member in struct:content::IndexedDBDatabase::PutOperationParams
731 Put(int64 transaction_id, int64 object_store_id, IndexedDBValue* value, ScopedVector<storage::BlobDataHandle>* handles, scoped_ptr<IndexedDBKey> key, blink::WebIDBPutMode put_mode, scoped_refptr<IndexedDBCallbacks> callbacks, const std::vector<IndexKeys>& index_keys) argument
898 SetIndexKeys(int64 transaction_id, int64 object_store_id, scoped_ptr<IndexedDBKey> primary_key, const std::vector<IndexKeys>& index_keys) argument
1002 int64 object_store_id; member in struct:content::IndexedDBDatabase::OpenCursorOperationParams
1014 OpenCursor( int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, blink::WebIDBCursorDirection direction, bool key_only, blink::WebIDBTaskType task_type, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1126 Count(int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1147 CountOperation( int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
1199 DeleteRange( int64 transaction_id, int64 object_store_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1220 DeleteRangeOperation( int64 object_store_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
1247 Clear(int64 transaction_id, int64 object_store_id, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1263 ClearOperation( int64 object_store_id, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* transaction) argument
1283 DeleteObjectStoreOperation( int64 object_store_id, IndexedDBTransaction* transaction) argument
1756 CreateObjectStoreAbortOperation( int64 object_store_id, IndexedDBTransaction* transaction) argument
[all...]
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<storage::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, blink::WebIDBCursorDirection, leveldb::Status* s) argument
171 OpenObjectStoreCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range, blink::WebIDBCursorDirection, leveldb::Status* s) argument
181 OpenIndexKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, blink::WebIDBCursorDirection, leveldb::Status* s) argument
192 OpenIndexCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, blink::WebIDBCursorDirection, leveldb::Status* s) argument
[all...]
H A Dindexed_db_fake_backing_store.h42 int64 object_store_id,
49 int64 object_store_id) OVERRIDE;
54 int64 object_store_id,
62 int64 object_store_id) OVERRIDE;
65 int64 object_store_id,
69 int64 object_store_id,
75 int64 object_store_id,
81 int64 object_store_id,
88 int64 object_store_id,
96 int64 object_store_id,
[all...]
H A Dindexed_db_leveldb_coding.h132 KeyPrefix(int64 database_id, int64 object_store_id);
133 KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id);
135 int64 object_store_id,
147 int64 object_store_id,
150 IsValidObjectStoreId(object_store_id) && IsValidIndexId(index_id);
152 static bool ValidIds(int64 database_id, int64 object_store_id) { argument
154 IsValidObjectStoreId(object_store_id);
167 int64 object_store_id,
171 int64 object_store_id,
270 int64 object_store_id,
146 ValidIds(int64 database_id, int64 object_store_id, int64 index_id) argument
436 int64 object_store_id() const { return object_store_id_; } function in class:content::BlobEntryKey
[all...]
H A Dindexed_db_index_writer.h33 int64 object_store_id,
43 int64 object_store_id) const;
51 int64 object_store_id,
H A Dindexed_db_backing_store.h98 BlobChangeRecord(const std::string& key, int64 object_store_id);
102 int64 object_store_id() const { return object_store_id_; } function in class:content::IndexedDBBackingStore::BlobChangeRecord
137 int64 object_store_id,
142 int64 object_store_id,
243 int64 object_store_id; member in struct:content::IndexedDBBackingStore::Cursor::CursorOptions
374 int64 object_store_id,
381 int64 object_store_id) WARN_UNUSED_RESULT;
386 int64 object_store_id,
392 int64 object_store_id,
400 int64 object_store_id) WARN_UNUSED_RESUL
[all...]
H A Dindexed_db_backing_store.cc1385 int64 object_store_id,
1403 database_id, object_store_id, user_key, NULL, NULL);
1411 int64 object_store_id) {
1414 BlobEntryKey::EncodeMinKeyForObjectStore(database_id, object_store_id);
1416 BlobEntryKey::EncodeStopKeyForObjectStore(database_id, object_store_id);
1418 transaction, database_id, object_store_id, start_key, stop_key, true);
1483 int64 object_store_id,
1493 if (meta_data_key.ObjectStoreId() != object_store_id)
1532 int64 object_store_id = meta_data_key.ObjectStoreId(); local
1548 object_store_id,
1382 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
1408 DeleteBlobsInObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id) argument
1481 CheckObjectStoreAndMetaDataType(const LevelDBIterator* it, const std::string& stop_key, int64 object_store_id, int64 meta_data_type) argument
1685 SetMaxObjectStoreId( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id) argument
1709 CreateObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const base::string16& name, const IndexedDBKeyPath& key_path, bool auto_increment) argument
1760 DeleteObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id) argument
1825 GetRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, IndexedDBValue* record) argument
1866 GetNewVersionNumber( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64* new_version_number) argument
1898 PutRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, IndexedDBValue* value, ScopedVector<storage::BlobDataHandle>* handles, RecordIdentifier* record_identifier) argument
1947 ClearObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id) argument
1968 DeleteRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const RecordIdentifier& record_identifier) argument
1992 DeleteRange( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range) argument
2055 GetKeyGeneratorCurrentNumber( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64* key_generator_current_number) argument
2127 MaybeUpdateKeyGeneratorCurrentNumber( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 new_number, bool check_current) argument
2156 KeyExistsInObjectStore( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKey& key, RecordIdentifier* found_record_identifier, bool* found) argument
2516 GetIndexes( int64 database_id, int64 object_store_id, IndexedDBObjectStoreMetadata::IndexMap* indexes) argument
2721 SetMaxIndexId( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64 index_id) argument
2748 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
2783 DeleteIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id) argument
2815 PutIndexDataForRecord( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& key, const RecordIdentifier& record_identifier) argument
2877 VersionExists(LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64 version, const std::string& encoded_primary_key, bool* exists) argument
2903 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
2962 GetPrimaryKeyViaIndex( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& key, scoped_ptr<IndexedDBKey>* primary_key) argument
3000 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
3623 ObjectStoreCursorOptions( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& range, blink::WebIDBCursorDirection direction, IndexedDBBackingStore::Cursor::CursorOptions* cursor_options) argument
3696 IndexCursorOptions( LevelDBTransaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& range, blink::WebIDBCursorDirection direction, IndexedDBBackingStore::Cursor::CursorOptions* cursor_options) argument
3771 OpenObjectStoreCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& range, blink::WebIDBCursorDirection direction, leveldb::Status* s) argument
3798 OpenObjectStoreKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& range, blink::WebIDBCursorDirection direction, leveldb::Status* s) argument
3825 OpenIndexKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& range, blink::WebIDBCursorDirection direction, leveldb::Status* s) argument
3854 OpenIndexCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& range, blink::WebIDBCursorDirection direction, leveldb::Status* s) argument
4191 BlobChangeRecord( const std::string& key, int64 object_store_id) argument
4226 PutBlobInfoIfNeeded( int64 database_id, int64 object_store_id, const std::string& object_store_data_key, std::vector<IndexedDBBlobInfo>* blob_info, ScopedVector<storage::BlobDataHandle>* handles) argument
4261 PutBlobInfo( int64 database_id, int64 object_store_id, const std::string& object_store_data_key, std::vector<IndexedDBBlobInfo>* blob_info, ScopedVector<storage::BlobDataHandle>* handles) argument
[all...]
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_leveldb_coding.cc1142 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id) argument
1144 object_store_id_(object_store_id),
1147 DCHECK(KeyPrefix::IsValidObjectStoreId(object_store_id));
1150 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id) argument
1152 object_store_id_(object_store_id),
1155 DCHECK(KeyPrefix::IsValidObjectStoreId(object_store_id));
1161 int64 object_store_id,
1164 object_store_id_(object_store_id),
1168 DCHECK(KeyPrefix::IsValidObjectStoreId(object_store_id));
1172 int64 object_store_id,
1159 KeyPrefix(enum Type type, int64 database_id, int64 object_store_id, int64 index_id) argument
1171 CreateWithSpecialIndex(int64 database_id, int64 object_store_id, int64 index_id) argument
1184 IsValidObjectStoreId(int64 object_store_id) argument
1240 EncodeInternal(int64 database_id, int64 object_store_id, int64 index_id) argument
1464 Encode(int64 database_id, int64 object_store_id, unsigned char meta_data_type) argument
1481 EncodeMaxKey(int64 database_id, int64 object_store_id) argument
1524 Encode(int64 database_id, int64 object_store_id, int64 index_id, unsigned char meta_data_type) argument
1537 EncodeMaxKey(int64 database_id, int64 object_store_id) argument
1545 EncodeMaxKey(int64 database_id, int64 object_store_id, int64 index_id) argument
1587 Encode(int64 database_id, int64 object_store_id) argument
1633 Encode(int64 database_id, int64 object_store_id, int64 index_id) argument
1644 EncodeMaxKey(int64 database_id, int64 object_store_id) argument
1724 Encode(int64 database_id, int64 object_store_id, const base::string16& index_name) argument
1758 Encode(int64 database_id, int64 object_store_id, const std::string encoded_user_key) argument
1769 Encode(int64 database_id, int64 object_store_id, const IndexedDBKey& user_key) argument
1803 Encode(int64 database_id, int64 object_store_id, const std::string& encoded_key) argument
1813 Encode(int64 database_id, int64 object_store_id, const IndexedDBKey& user_key) argument
1874 EncodeMinKeyForObjectStore(int64 database_id, int64 object_store_id) argument
1880 EncodeStopKeyForObjectStore(int64 database_id, int64 object_store_id) argument
1893 Encode(int64 database_id, int64 object_store_id, const IndexedDBKey& user_key) argument
1901 Encode(int64 database_id, int64 object_store_id, const std::string& encoded_user_key) argument
1950 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
1964 Encode(int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& user_key) argument
1974 Encode(int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey& user_key, const IndexedDBKey& user_primary_key) argument
1991 EncodeMinKey(int64 database_id, int64 object_store_id, int64 index_id) argument
1998 EncodeMaxKey(int64 database_id, int64 object_store_id, int64 index_id) argument
[all...]
H A Dindexed_db_dispatcher_host.cc513 params.object_store_id,
528 int64 object_store_id) {
537 parent_->HostTransactionId(transaction_id), object_store_id);
612 params.object_store_id,
682 params.object_store_id,
708 params.object_store_id,
716 int64 object_store_id,
726 parent_->HostTransactionId(transaction_id), object_store_id, index_ids);
742 params.object_store_id,
764 params.object_store_id,
525 OnDeleteObjectStore( int32 ipc_database_id, int64 transaction_id, int64 object_store_id) argument
713 OnSetIndexesReady( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const std::vector<int64>& index_ids) argument
788 OnClear( int32 ipc_thread_id, int32 ipc_callbacks_id, int32 ipc_database_id, int64 transaction_id, int64 object_store_id) argument
870 OnDeleteIndex( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id) argument
[all...]
H A Dindexed_db_dispatcher_host.h157 int64 object_store_id);
174 int64 object_store_id,
184 int64 object_store_id);
189 int64 object_store_id,
H A Dindexed_db_backing_store_unittest.cc710 // and object_store_id still work.
805 const int64 object_store_id = 1; local
829 object_store_id,
836 &transaction1, 0, object_store_id, m_key1, &m_value1, &handles, &record);
847 object_store_id,
852 &transaction1, 0, object_store_id, m_key1, &result_value);
858 object_store_id,
865 object_store_id,
871 &transaction1, database_id, object_store_id, 0, m_key1, &new_primary_key);
876 object_store_id,
896 const int64 object_store_id = 99; local
[all...]
/external/chromium_org/content/child/indexed_db/
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));
102 long long object_store_id,
111 object_store_id,
119 long long object_store_id,
131 object_store_id,
143 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
101 get(long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, bool key_only, WebIDBCallbacks* callbacks) argument
118 put(long long transaction_id, long long object_store_id, const blink::WebData& value, const blink::WebVector<WebBlobInfo>& web_blob_info, const WebIDBKey& key, blink::WebIDBPutMode put_mode, WebIDBCallbacks* callbacks, const WebVector<long long>& web_index_ids, const WebVector<WebIndexKeys>& web_index_keys) argument
141 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
167 setIndexesReady( long long transaction_id, long long object_store_id, const WebVector<long long>& web_index_ids) argument
177 openCursor(long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, blink::WebIDBCursorDirection direction, bool key_only, blink::WebIDBTaskType task_type, WebIDBCallbacks* callbacks) argument
199 count(long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
215 deleteRange(long long transaction_id, long long object_store_id, const WebIDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
229 clear(long long transaction_id, long long object_store_id, WebIDBCallbacks* callbacks) argument
238 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
258 deleteIndex(long long transaction_id, long long object_store_id, long long index_id) argument
[all...]
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
177 object_store_id,
218 object_store_id,
272 const int32 object_store_id = 0; local
301 object_store_id,
313 object_store_id,
[all...]
H A Dindexed_db_dispatcher.h126 int64 object_store_id,
135 int64 object_store_id,
146 int64 object_store_id,
156 int64 object_store_id,
163 int64 object_store_id,
169 int64 object_store_id,
H A Dindexed_db_dispatcher.cc311 int64 object_store_id,
321 params.object_store_id = object_store_id;
331 int64 object_store_id,
355 params.object_store_id = object_store_id;
395 int64 object_store_id,
407 params.object_store_id = object_store_id;
423 int64 object_store_id,
308 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
328 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, blink::WebIDBPutMode put_mode, WebIDBCallbacks* callbacks, const WebVector<long long>& index_ids, const WebVector<WebVector<WebIDBKey> >& index_keys) argument
392 RequestIDBDatabaseOpenCursor( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, blink::WebIDBCursorDirection direction, bool key_only, blink::WebIDBTaskType task_type, WebIDBCallbacks* callbacks) argument
420 RequestIDBDatabaseCount( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
438 RequestIDBDatabaseDeleteRange( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
454 RequestIDBDatabaseClear( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, WebIDBCallbacks* callbacks_ptr) argument
[all...]
H A Dwebidbdatabase_impl.h38 long long object_store_id);
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_messages.h102 IPC_STRUCT_MEMBER(int64, object_store_id)
120 IPC_STRUCT_MEMBER(int64, object_store_id)
149 IPC_STRUCT_MEMBER(int64, object_store_id)
174 IPC_STRUCT_MEMBER(int64, object_store_id)
197 IPC_STRUCT_MEMBER(int64, object_store_id)
213 IPC_STRUCT_MEMBER(int64, object_store_id)
224 IPC_STRUCT_MEMBER(int64, object_store_id)
238 IPC_STRUCT_MEMBER(int64, object_store_id)
475 int64) /* object_store_id */
509 int64, /* object_store_id */
[all...]

Completed in 304 milliseconds