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

  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 50 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); }
51 virtual void deleteObjectStore(long long transactionId, long long objectStoreId) { BLINK_ASSERT_NOT_REACHED(); }
59 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(); }
60 virtual void deleteIndex(long long transactionId, long long objectStoreId, long long indexId) { BLINK_ASSERT_NOT_REACHED(); }
66 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
67 virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebVector<WebBlobInfo>&, const WebIDBKey&, WebIDBPutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
68 virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
69 virtual void setIndexesReady(long long transactionId, long long objectStoreId, const WebVector<long long>& indexIds) { BLINK_ASSERT_NOT_REACHED(); }
70 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCursorDirection, bool keyOnly, WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
71 virtual void count(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED();
    [all...]
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.h 48 long long objectStoreId,
54 long long objectStoreId,
63 long long objectStoreId,
68 long long objectStoreId,
71 long long objectStoreId,
79 long long objectStoreId,
84 long long objectStoreId,
88 long long objectStoreId,
91 long long objectStoreId,
98 long long objectStoreId,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 126 void IDBDatabase::indexCreated(int64_t objectStoreId, const IDBIndexMetadata& metadata)
128 IDBDatabaseMetadata::ObjectStoreMap::iterator it = m_metadata.objectStores.find(objectStoreId);
133 void IDBDatabase::indexDeleted(int64_t objectStoreId, int64_t indexId)
135 IDBDatabaseMetadata::ObjectStoreMap::iterator it = m_metadata.objectStores.find(objectStoreId);
253 int64_t objectStoreId = m_metadata.maxObjectStoreId + 1;
254 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
256 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
282 int64_t objectStoreId = findObjectStoreId(name);
283 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
293 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 130 int64_t objectStoreId = m_database->findObjectStoreId(name);
131 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
139 IDBObjectStore* objectStore = IDBObjectStore::create(metadata.objectStores.get(objectStoreId), this);
IDBObjectStore.cpp 339 static PassRefPtr<IndexPopulator> create(ScriptState* scriptState, IDBDatabase* database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata)
341 return adoptRef(new IndexPopulator(scriptState, database, transactionId, objectStoreId, indexMetadata));
350 IndexPopulator(ScriptState* scriptState, IDBDatabase* database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata)
355 , m_objectStoreId(objectStoreId)

Completed in 50 milliseconds