Home
last modified time | relevance | path

Searched refs:IDBObjectStoreBackendInterface (Results 1 – 25 of 33) sorted by relevance

12

/external/webkit/Source/WebCore/storage/
DIDBCursorBackendImpl.h44 class IDBObjectStoreBackendInterface; variable
51 …ype cursorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objec… in create()
66 …DBCursor::Direction, CursorType, IDBTransactionBackendInterface*, IDBObjectStoreBackendInterface*);
74 RefPtr<IDBObjectStoreBackendInterface> m_objectStore;
DIDBObjectStoreBackendInterface.h45 class IDBObjectStoreBackendInterface : public ThreadSafeRefCounted<IDBObjectStoreBackendInterface> {
47 virtual ~IDBObjectStoreBackendInterface() { } in ~IDBObjectStoreBackendInterface()
DIDBObjectStore.h51 …static PassRefPtr<IDBObjectStore> create(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore… in create()
81 IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface>, IDBTransaction*);
84 RefPtr<IDBObjectStoreBackendInterface> m_objectStore;
DIDBTransactionBackendInterface.h39 class IDBObjectStoreBackendInterface; variable
50 …virtual PassRefPtr<IDBObjectStoreBackendInterface> objectStore(const String& name, ExceptionCode&)…
DIDBDatabaseBackendInterface.h42 class IDBObjectStoreBackendInterface; variable
57 …virtual PassRefPtr<IDBObjectStoreBackendInterface> createObjectStore(const String& name, const Str…
DIDBObjectStore.cpp45 IDBObjectStore::IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore, IDBTransa… in IDBObjectStore()
84 …m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOnly, request, m_transaction->ba… in add()
95 …m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOrUpdate, request, m_transaction… in put()
DIDBCursorBackendImpl.cpp44 …ype cursorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objec… in IDBCursorBackendImpl()
85 …m_objectStore->put(value, m_cursor->primaryKey(), IDBObjectStoreBackendInterface::CursorUpdate, ca… in update()
DIDBDatabaseBackendImpl.h63 …virtual PassRefPtr<IDBObjectStoreBackendInterface> createObjectStore(const String& name, const Str…
69 PassRefPtr<IDBObjectStoreBackendInterface> objectStore(const String& name);
DIDBTransactionBackendImpl.cpp63 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendImpl::objectStore(const String& nam… in objectStore()
76 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_database->objectStore(name); in objectStore()
DIDBTransactionBackendImpl.h48 …virtual PassRefPtr<IDBObjectStoreBackendInterface> objectStore(const String& name, ExceptionCode&);
DIDBDatabaseBackendImpl.cpp100 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::createObjectStore(const String& … in createObjectStore()
137 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::objectStore(const String& name) in objectStore()
DIDBTransaction.cpp90 RefPtr<IDBObjectStoreBackendInterface> objectStoreBackend = m_backend->objectStore(name, ec); in objectStore()
DIDBDatabase.cpp88 …RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->createObjectStore(name, keyPath, a… in createObjectStore()
DIDBObjectStoreBackendImpl.h43 class IDBObjectStoreBackendImpl : public IDBObjectStoreBackendInterface {
DIDBIndexBackendImpl.cpp96 …RefPtr<IDBObjectStoreBackendInterface> objectStore = transaction->objectStore(index->m_storeName, … in openCursorInternal()
/external/webkit/Source/WebKit/chromium/src/
DWebIDBObjectStoreImpl.h36 namespace WebCore { class IDBObjectStoreBackendInterface; } variable
45 WebIDBObjectStoreImpl(WTF::PassRefPtr<WebCore::IDBObjectStoreBackendInterface>);
64 WTF::RefPtr<WebCore::IDBObjectStoreBackendInterface> m_objectStore;
DIDBObjectStoreBackendProxy.h40 class IDBObjectStoreBackendProxy : public WebCore::IDBObjectStoreBackendInterface {
42 … static PassRefPtr<WebCore::IDBObjectStoreBackendInterface> create(PassOwnPtr<WebIDBObjectStore>);
DWebIDBObjectStoreImpl.cpp46 WebIDBObjectStoreImpl::WebIDBObjectStoreImpl(PassRefPtr<IDBObjectStoreBackendInterface> objectStore) in WebIDBObjectStoreImpl()
77 …m_objectStore->put(value, key, static_cast<IDBObjectStoreBackendInterface::PutMode>(putMode), IDBC… in put()
DWebIDBTransactionImpl.cpp56 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->objectStore(name, ec); in objectStore()
DIDBTransactionBackendProxy.h44 …virtual PassRefPtr<WebCore::IDBObjectStoreBackendInterface> objectStore(const String& name, WebCor…
DIDBTransactionBackendProxy.cpp57 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendProxy::objectStore(const String& na… in objectStore()
DIDBDatabaseBackendProxy.h49 …virtual PassRefPtr<WebCore::IDBObjectStoreBackendInterface> createObjectStore(const String& name, …
DWebIDBDatabaseImpl.cpp71 …RefPtr<IDBObjectStoreBackendInterface> objectStore = m_databaseBackend->createObjectStore(name, ke… in createObjectStore()
DIDBDatabaseBackendProxy.cpp78 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendProxy::createObjectStore(const String&… in createObjectStore()
DIDBObjectStoreBackendProxy.cpp48 PassRefPtr<IDBObjectStoreBackendInterface> IDBObjectStoreBackendProxy::create(PassOwnPtr<WebIDBObje… in create()

12