Searched refs:index_id (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_index_writer.cc36 int64 index_id,
41 DCHECK_EQ(index_id, index_keys_.first);
47 index_id,
73 int64 index_id = index_metadata_.id; local
74 DCHECK_EQ(index_id, index_keys_.first);
80 index_id,
94 int64 index_id,
109 index_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_database.h69 void RemoveIndex(int64 object_store_id, int64 index_id);
99 int64 index_id,
104 void DeleteIndex(int64 transaction_id, int64 object_store_id, int64 index_id);
121 int64 index_id,
142 int64 index_id,
150 int64 index_id,
189 int64 index_id,
192 int64 index_id,
198 int64 index_id,
212 int64 index_id,
[all...]
H A Dindexed_db_index_writer.h34 int64 index_id,
52 int64 index_id,
H A Dindexed_db_database.cc164 void IndexedDBDatabase::RemoveIndex(int64 object_store_id, int64 index_id) { argument
170 DCHECK(object_store.indexes.find(index_id) != object_store.indexes.end());
171 object_store.indexes.erase(index_id);
225 int64 index_id) const {
230 if (!ContainsKey(object_store_metadata.indexes, index_id)) {
231 DLOG(ERROR) << "Invalid index_id";
239 int64 index_id) const {
244 if (index_id != IndexedDBIndexMetadata::kInvalidId &&
245 !ContainsKey(object_store_metadata.indexes, index_id)) {
246 DLOG(ERROR) << "Invalid index_id";
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
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
1003 int64 index_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
[all...]
H A Dindexed_db_leveldb_coding.h133 KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id);
136 int64 index_id);
144 static bool IsValidObjectStoreId(int64 index_id);
145 static bool IsValidIndexId(int64 index_id);
148 int64 index_id) {
150 IsValidObjectStoreId(object_store_id) && IsValidIndexId(index_id);
168 int64 index_id);
172 int64 index_id);
297 int64 index_id,
303 int64 index_id);
146 ValidIds(int64 database_id, int64 object_store_id, int64 index_id) argument
[all...]
H A Dindexed_db_fake_backing_store.cc133 int64 index_id,
144 int64 index_id) {
151 int64 index_id,
185 int64 index_id,
196 int64 index_id,
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
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
H A Dindexed_db_fake_backing_store.h89 int64 index_id,
97 int64 index_id) OVERRIDE;
101 int64 index_id,
124 int64 index_id,
131 int64 index_id,
H A Dindexed_db_leveldb_coding.cc1150 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id) argument
1153 index_id_(index_id) {
1156 DCHECK(KeyPrefix::IsValidIndexId(index_id));
1162 int64 index_id)
1165 index_id_(index_id) {
1173 int64 index_id) {
1176 DCHECK(index_id);
1177 return KeyPrefix(INVALID_TYPE, database_id, object_store_id, index_id);
1189 bool KeyPrefix::IsValidIndexId(int64 index_id) { argument
1190 return (index_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
1240 EncodeInternal(int64 database_id, int64 object_store_id, int64 index_id) argument
1524 Encode(int64 database_id, int64 object_store_id, int64 index_id, unsigned char meta_data_type) argument
1545 EncodeMaxKey(int64 database_id, int64 object_store_id, int64 index_id) argument
1633 Encode(int64 database_id, int64 object_store_id, int64 index_id) 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_backing_store.h244 int64 index_id; member in struct:content::IndexedDBBackingStore::Cursor::CursorOptions
434 int64 index_id,
443 int64 index_id) WARN_UNUSED_RESULT;
448 int64 index_id,
455 int64 index_id,
462 int64 index_id,
490 int64 index_id,
498 int64 index_id,
546 int64 index_id,
H A Dindexed_db_backing_store.cc2498 int64 index_id,
2507 if (meta_data_key.IndexId() != index_id)
2549 int64 index_id = meta_data_key.IndexId(); local
2561 it.get(), stop_key, index_id, IndexMetaDataKey::UNIQUE)) {
2576 it.get(), stop_key, index_id, IndexMetaDataKey::KEY_PATH)) {
2592 it.get(), stop_key, index_id, IndexMetaDataKey::MULTI_ENTRY)) {
2602 (*indexes)[index_id] = IndexedDBIndexMetadata(
2603 index_name, index_id, key_path, index_unique, index_multi_entry);
2725 int64 index_id) {
2739 if (index_id <
2496 CheckIndexAndMetaDataKey(const LevelDBIterator* it, const std::string& stop_key, int64 index_id, unsigned char meta_data_type) 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
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
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
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
[all...]
H A Dindexed_db_database_unittest.cc311 const int64 index_id = 2002; local
314 index_id,
364 const int64 index_id = 2002; local
367 index_id,
H A Dindexed_db_dispatcher_host.cc613 params.index_id,
743 params.index_id,
765 params.index_id,
857 params.index_id,
874 int64 index_id) {
883 parent_->HostTransactionId(transaction_id), object_store_id, index_id);
870 OnDeleteIndex( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id) argument
H A Dindexed_db_backing_store_unittest.cc806 const int64 index_id = kMinimumIndexId; local
877 index_id,
884 index_id,
902 const int64 index_id = 999; local
928 index_id,
968 IndexedDBIndexMetadata index = object_store.indexes[index_id];
H A Dindexed_db_dispatcher_host.h190 int64 index_id);
/external/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.cc103 long long index_id,
112 index_id,
179 long long index_id,
191 index_id,
201 long long index_id,
210 index_id,
240 long long index_id,
249 params.index_id = index_id;
260 long long index_id) {
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
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
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.cc162 const int32 index_id = 3; local
178 index_id,
219 index_id,
273 const int32 index_id = 0; local
302 index_id,
314 index_id,
H A Dindexed_db_dispatcher.h127 int64 index_id,
147 int64 index_id,
157 int64 index_id,
H A Dindexed_db_dispatcher.cc312 int64 index_id,
322 params.index_id = index_id;
396 int64 index_id,
408 params.index_id = index_id;
424 int64 index_id,
433 params.index_id = index_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
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
/external/lldb/include/lldb/Target/
H A DThreadList.h56 SetSelectedThreadByIndexID (uint32_t index_id, bool notify = false);
86 FindThreadByIndexID (uint32_t index_id, bool can_update = true);
/external/lldb/include/lldb/API/
H A DSBProcess.h121 GetThreadByIndexID (uint32_t index_id);
142 SetSelectedThreadByIndexID (uint32_t index_id);
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_messages.h122 IPC_STRUCT_MEMBER(int64, index_id)
151 IPC_STRUCT_MEMBER(int64, index_id)
176 IPC_STRUCT_MEMBER(int64, index_id)
199 IPC_STRUCT_MEMBER(int64, index_id)
240 IPC_STRUCT_MEMBER(int64, index_id)
541 int64) /* index_id */
/external/lldb/scripts/Python/interface/
H A DSBProcess.i159 GetThreadByIndexID (uint32_t index_id);
180 SetSelectedThreadByIndexID (uint32_t index_id);
/external/lldb/source/Target/
H A DThreadList.cpp226 ThreadList::FindThreadByIndexID (uint32_t index_id, bool can_update) argument
237 if (m_threads[idx]->GetIndexID() == index_id)
703 ThreadList::SetSelectedThreadByIndexID (uint32_t index_id, bool notify) argument
706 ThreadSP selected_thread_sp (FindThreadByIndexID(index_id));
/external/lldb/source/API/
H A DSBProcess.cpp488 SBProcess::SetSelectedThreadByIndexID (uint32_t index_id) argument
497 ret_val = process_sp->GetThreadList().SetSelectedThreadByIndexID (index_id);
502 process_sp.get(), index_id, (ret_val ? "true" : "false"));
874 SBProcess::GetThreadByIndexID (uint32_t index_id) argument
884 thread_sp = process_sp->GetThreadList().FindThreadByIndexID (index_id, can_update);
893 index_id,
/external/lldb/source/Commands/
H A DCommandObjectThread.cpp1186 uint32_t index_id = Args::StringToUInt32(command.GetArgumentAtIndex(0), 0, 0); local
1188 Thread *new_thread = process->GetThreadList().FindThreadByIndexID(index_id).get();

Completed in 521 milliseconds

12