HomeSort by relevance Sort by last modified time
    Searched refs:objectStoreId (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.h 44 long long objectStoreId,
50 long long objectStoreId,
59 long long objectStoreId,
64 long long objectStoreId,
67 long long objectStoreId,
75 long long objectStoreId,
80 long long objectStoreId,
84 long long objectStoreId,
87 long long objectStoreId,
94 long long objectStoreId,
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 56 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); }
57 virtual void deleteObjectStore(long long transactionId, long long objectStoreId) { BLINK_ASSERT_NOT_REACHED(); }
65 virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { BLINK_ASSERT_NOT_REACHED(); }
66 virtual void deleteIndex(long long transactionId, long long objectStoreId, long long indexId) { BLINK_ASSERT_NOT_REACHED(); }
85 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
86 virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebVector<WebBlobInfo>&, const WebIDBKey&, blink::WebIDBPutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
87 virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
88 virtual void setIndexesReady(long long transactionId, long long objectStoreId, const WebVector<long long>& indexIds) { BLINK_ASSERT_NOT_REACHED(); }
89 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, blink::WebIDBCursorDirection, bool keyOnly, blink::WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
90 virtual void count(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 127 void IDBDatabase::indexCreated(int64_t objectStoreId, const IDBIndexMetadata& metadata)
129 IDBDatabaseMetadata::ObjectStoreMap::iterator it = m_metadata.objectStores.find(objectStoreId);
134 void IDBDatabase::indexDeleted(int64_t objectStoreId, int64_t indexId)
136 IDBDatabaseMetadata::ObjectStoreMap::iterator it = m_metadata.objectStores.find(objectStoreId);
254 int64_t objectStoreId = m_metadata.maxObjectStoreId + 1;
255 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
257 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
283 int64_t objectStoreId = findObjectStoreId(name);
284 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
294 m_backend->deleteObjectStore(m_versionChangeTransaction->id(), objectStoreId);
    [all...]
IDBDatabase.h 66 void indexCreated(int64_t objectStoreId, const IDBIndexMetadata&);
67 void indexDeleted(int64_t objectStoreId, int64_t indexId);
IDBTransaction.cpp 153 int64_t objectStoreId = m_database->findObjectStoreId(name);
154 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
162 IDBObjectStore* objectStore = IDBObjectStore::create(metadata.objectStores.get(objectStoreId), this);
IDBObjectStore.cpp 318 static PassRefPtr<IndexPopulator> create(ScriptState* scriptState, IDBDatabase* database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata)
320 return adoptRef(new IndexPopulator(scriptState, database, transactionId, objectStoreId, indexMetadata));
329 IndexPopulator(ScriptState* scriptState, IDBDatabase* database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata)
334 , m_objectStoreId(objectStoreId)

Completed in 1923 milliseconds