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 47 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); }
48 virtual void deleteObjectStore(long long transactionId, long long objectStoreId) { BLINK_ASSERT_NOT_REACHED(); }
56 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(); }
57 virtual void deleteIndex(long long transactionId, long long objectStoreId, long long indexId) { BLINK_ASSERT_NOT_REACHED(); }
74 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
76 virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
77 virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
78 virtual void setIndexesReady(long long transactionId, long long objectStoreId, const WebVector<long long>& indexIds) { BLINK_ASSERT_NOT_REACHED(); }
79 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, unsigned short direction, bool keyOnly, TaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
80 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 42 long long objectStoreId,
48 long long objectStoreId,
56 long long objectStoreId,
61 long long objectStoreId,
64 long long objectStoreId,
72 long long objectStoreId,
77 long long objectStoreId,
81 long long objectStoreId,
84 long long objectStoreId,
91 long long objectStoreId,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 99 void IDBDatabase::indexCreated(int64_t objectStoreId, const IDBIndexMetadata& metadata)
101 IDBDatabaseMetadata::ObjectStoreMap::iterator it = m_metadata.objectStores.find(objectStoreId);
106 void IDBDatabase::indexDeleted(int64_t objectStoreId, int64_t indexId)
108 IDBDatabaseMetadata::ObjectStoreMap::iterator it = m_metadata.objectStores.find(objectStoreId);
222 int64_t objectStoreId = m_metadata.maxObjectStoreId + 1;
223 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
225 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
251 int64_t objectStoreId = findObjectStoreId(name);
252 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
257 m_backend->deleteObjectStore(m_versionChangeTransaction->id(), objectStoreId);
    [all...]
IDBDatabase.h 61 void indexCreated(int64_t objectStoreId, const IDBIndexMetadata&);
62 void indexDeleted(int64_t objectStoreId, int64_t indexId);
IDBTransaction.cpp 141 int64_t objectStoreId = m_database->findObjectStoreId(name);
142 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
150 RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(metadata.objectStores.get(objectStoreId), this);
IDBObjectStore.cpp 304 static PassRefPtr<IndexPopulator> create(PassRefPtr<IDBDatabase> database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata)
306 return adoptRef(new IndexPopulator(database, transactionId, objectStoreId, indexMetadata));
315 IndexPopulator(PassRefPtr<IDBDatabase> database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata)
319 , m_objectStoreId(objectStoreId)

Completed in 227 milliseconds