Home
last modified time | relevance | path

Searched refs:idbObjectStore (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorIndexedDBAgent.cpp212 …RefPtr<IDBObjectStore> idbObjectStore = idbTransaction->objectStore(objectStoreName, exceptionStat… in objectStoreForTransaction() local
215 return idbObjectStore; in objectStoreForTransaction()
218 static PassRefPtr<IDBIndex> indexForObjectStore(IDBObjectStore* idbObjectStore, const String& index… in indexForObjectStore() argument
221 RefPtr<IDBIndex> idbIndex = idbObjectStore->index(indexName, exceptionState); in indexForObjectStore()
493 …RefPtr<IDBObjectStore> idbObjectStore = objectStoreForTransaction(idbTransaction.get(), m_objectSt… in execute() local
494 if (!idbObjectStore) { in execute()
503 RefPtr<IDBIndex> idbIndex = indexForObjectStore(idbObjectStore.get(), m_indexName); in execute()
511 …idbRequest = idbObjectStore->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), Indexed… in execute()
730 …RefPtr<IDBObjectStore> idbObjectStore = objectStoreForTransaction(idbTransaction.get(), m_objectSt… in execute() local
731 if (!idbObjectStore) { in execute()
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBAny.h104 IDBObjectStore* idbObjectStore() const;
DIDBCursor.cpp372 return m_source->idbObjectStore(); in effectiveObjectStore()
380 return m_source->idbObjectStore()->isDeleted(); in isDeleted()
DIDBAny.cpp95 IDBObjectStore* IDBAny::idbObjectStore() const in idbObjectStore() function in WebCore::IDBAny
DIDBRequest.cpp288 return source->idbObjectStore(); in effectiveObjectStore()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DIDBBindingUtilities.cpp128 return toV8(impl->idbObjectStore(), creationContext, isolate); in toV8()