Home
last modified time | relevance | path

Searched defs:objectStore (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/storage/
DIDBObjectStoreBackendImpl.cpp86 RefPtr<IDBObjectStoreBackendImpl> objectStore = this; in get() local
93 …reBackendImpl::getInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in getInternal()
128 RefPtr<IDBObjectStoreBackendImpl> objectStore = this; in put() local
139 …efPtr<IDBKey> IDBObjectStoreBackendImpl::selectKeyForPut(IDBObjectStoreBackendImpl* objectStore, I… in selectKeyForPut()
202 …reBackendImpl::putInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in putInternal()
279 RefPtr<IDBObjectStoreBackendImpl> objectStore = this; in deleteFunction() local
287 …ackendImpl::deleteInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in deleteInternal()
314 RefPtr<IDBObjectStoreBackendImpl> objectStore = this; in clear() local
321 …BackendImpl::clearInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in clearInternal()
383 RefPtr<IDBObjectStoreBackendImpl> objectStore = this; in createIndex() local
[all …]
DIDBDatabaseBackendImpl.cpp109 …RefPtr<IDBObjectStoreBackendImpl> objectStore = IDBObjectStoreBackendImpl::create(m_backingStore.g… in createObjectStore() local
124 …text*, PassRefPtr<IDBDatabaseBackendImpl> database, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in createObjectStoreInternal()
137 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::objectStore(const String& name) in objectStore() function in WebCore::IDBDatabaseBackendImpl
144 RefPtr<IDBObjectStoreBackendImpl> objectStore = m_objectStores.get(name); in deleteObjectStore() local
159 …text*, PassRefPtr<IDBDatabaseBackendImpl> database, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in deleteObjectStoreInternal()
256 …text*, PassRefPtr<IDBDatabaseBackendImpl> database, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in removeObjectStoreFromMap()
262 …text*, PassRefPtr<IDBDatabaseBackendImpl> database, PassRefPtr<IDBObjectStoreBackendImpl> objectSt… in addObjectStoreToMap()
DIDBIndex.h44 …IDBIndex> create(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTra… in create()
52 IDBObjectStore* objectStore() const { return m_objectStore.get(); } in objectStore() function
DIDBTransactionBackendImpl.cpp63 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendImpl::objectStore(const String& nam… in objectStore() function in WebCore::IDBTransactionBackendImpl
76 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_database->objectStore(name); in objectStore() local
DIDBTransaction.cpp84 PassRefPtr<IDBObjectStore> IDBTransaction::objectStore(const String& name, ExceptionCode& ec) in objectStore() function in WebCore::IDBTransaction
95 RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(objectStoreBackend, this); in objectStore() local
DIDBCursorBackendImpl.h51 …rsorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objectStore) in create()
DIDBIndex.cpp44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTr… in IDBIndex()
DIDBCursorBackendImpl.cpp44 …rsorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objectStore) in IDBCursorBackendImpl()
DIDBDatabase.cpp88 …RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->createObjectStore(name, keyPath, a… in createObjectStore() local
DIDBIndexBackendImpl.cpp96 …RefPtr<IDBObjectStoreBackendInterface> objectStore = transaction->objectStore(index->m_storeName, … in openCursorInternal() local
/external/webkit/Source/WebKit/chromium/src/
DWebIDBTransactionImpl.cpp54 WebIDBObjectStore* WebIDBTransactionImpl::objectStore(const WebString& name, ExceptionCode& ec) in objectStore() function in WebKit::WebIDBTransactionImpl
56 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->objectStore(name, ec); in objectStore() local
DIDBTransactionBackendProxy.cpp57 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendProxy::objectStore(const String& na… in objectStore() function in WebKit::IDBTransactionBackendProxy
59 WebIDBObjectStore* objectStore = m_webIDBTransaction->objectStore(name, ec); in objectStore() local
DIDBObjectStoreBackendProxy.cpp48 …toreBackendInterface> IDBObjectStoreBackendProxy::create(PassOwnPtr<WebIDBObjectStore> objectStore) in create()
53 IDBObjectStoreBackendProxy::IDBObjectStoreBackendProxy(PassOwnPtr<WebIDBObjectStore> objectStore) in IDBObjectStoreBackendProxy()
DWebIDBDatabaseImpl.cpp71 …RefPtr<IDBObjectStoreBackendInterface> objectStore = m_databaseBackend->createObjectStore(name, ke… in createObjectStore() local
DIDBDatabaseBackendProxy.cpp83 …WebIDBObjectStore* objectStore = m_webIDBDatabase->createObjectStore(name, keyPath, autoIncrement,… in createObjectStore() local
DWebIDBObjectStoreImpl.cpp46 WebIDBObjectStoreImpl::WebIDBObjectStoreImpl(PassRefPtr<IDBObjectStoreBackendInterface> objectStore) in WebIDBObjectStoreImpl()
/external/webkit/Source/WebKit/chromium/public/
DWebIDBTransaction.h49 virtual WebIDBObjectStore* objectStore(const WebString& name, WebExceptionCode&) in objectStore() function