/external/webkit/Source/WebCore/storage/ |
D | IDBCursorBackendImpl.h | 44 class IDBObjectStoreBackendInterface; variable 51 …ype cursorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objec… in create() 66 …DBCursor::Direction, CursorType, IDBTransactionBackendInterface*, IDBObjectStoreBackendInterface*); 74 RefPtr<IDBObjectStoreBackendInterface> m_objectStore;
|
D | IDBObjectStoreBackendInterface.h | 45 class IDBObjectStoreBackendInterface : public ThreadSafeRefCounted<IDBObjectStoreBackendInterface> { 47 virtual ~IDBObjectStoreBackendInterface() { } in ~IDBObjectStoreBackendInterface()
|
D | IDBObjectStore.h | 51 …static PassRefPtr<IDBObjectStore> create(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore… in create() 81 IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface>, IDBTransaction*); 84 RefPtr<IDBObjectStoreBackendInterface> m_objectStore;
|
D | IDBTransactionBackendInterface.h | 39 class IDBObjectStoreBackendInterface; variable 50 …virtual PassRefPtr<IDBObjectStoreBackendInterface> objectStore(const String& name, ExceptionCode&)…
|
D | IDBDatabaseBackendInterface.h | 42 class IDBObjectStoreBackendInterface; variable 57 …virtual PassRefPtr<IDBObjectStoreBackendInterface> createObjectStore(const String& name, const Str…
|
D | IDBObjectStore.cpp | 45 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()
|
D | IDBCursorBackendImpl.cpp | 44 …ype cursorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objec… in IDBCursorBackendImpl() 85 …m_objectStore->put(value, m_cursor->primaryKey(), IDBObjectStoreBackendInterface::CursorUpdate, ca… in update()
|
D | IDBDatabaseBackendImpl.h | 63 …virtual PassRefPtr<IDBObjectStoreBackendInterface> createObjectStore(const String& name, const Str… 69 PassRefPtr<IDBObjectStoreBackendInterface> objectStore(const String& name);
|
D | IDBTransactionBackendImpl.cpp | 63 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendImpl::objectStore(const String& nam… in objectStore() 76 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_database->objectStore(name); in objectStore()
|
D | IDBTransactionBackendImpl.h | 48 …virtual PassRefPtr<IDBObjectStoreBackendInterface> objectStore(const String& name, ExceptionCode&);
|
D | IDBDatabaseBackendImpl.cpp | 100 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::createObjectStore(const String& … in createObjectStore() 137 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::objectStore(const String& name) in objectStore()
|
D | IDBTransaction.cpp | 90 RefPtr<IDBObjectStoreBackendInterface> objectStoreBackend = m_backend->objectStore(name, ec); in objectStore()
|
D | IDBDatabase.cpp | 88 …RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->createObjectStore(name, keyPath, a… in createObjectStore()
|
D | IDBObjectStoreBackendImpl.h | 43 class IDBObjectStoreBackendImpl : public IDBObjectStoreBackendInterface {
|
D | IDBIndexBackendImpl.cpp | 96 …RefPtr<IDBObjectStoreBackendInterface> objectStore = transaction->objectStore(index->m_storeName, … in openCursorInternal()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebIDBObjectStoreImpl.h | 36 namespace WebCore { class IDBObjectStoreBackendInterface; } variable 45 WebIDBObjectStoreImpl(WTF::PassRefPtr<WebCore::IDBObjectStoreBackendInterface>); 64 WTF::RefPtr<WebCore::IDBObjectStoreBackendInterface> m_objectStore;
|
D | IDBObjectStoreBackendProxy.h | 40 class IDBObjectStoreBackendProxy : public WebCore::IDBObjectStoreBackendInterface { 42 … static PassRefPtr<WebCore::IDBObjectStoreBackendInterface> create(PassOwnPtr<WebIDBObjectStore>);
|
D | WebIDBObjectStoreImpl.cpp | 46 WebIDBObjectStoreImpl::WebIDBObjectStoreImpl(PassRefPtr<IDBObjectStoreBackendInterface> objectStore) in WebIDBObjectStoreImpl() 77 …m_objectStore->put(value, key, static_cast<IDBObjectStoreBackendInterface::PutMode>(putMode), IDBC… in put()
|
D | WebIDBTransactionImpl.cpp | 56 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->objectStore(name, ec); in objectStore()
|
D | IDBTransactionBackendProxy.h | 44 …virtual PassRefPtr<WebCore::IDBObjectStoreBackendInterface> objectStore(const String& name, WebCor…
|
D | IDBTransactionBackendProxy.cpp | 57 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendProxy::objectStore(const String& na… in objectStore()
|
D | IDBDatabaseBackendProxy.h | 49 …virtual PassRefPtr<WebCore::IDBObjectStoreBackendInterface> createObjectStore(const String& name, …
|
D | WebIDBDatabaseImpl.cpp | 71 …RefPtr<IDBObjectStoreBackendInterface> objectStore = m_databaseBackend->createObjectStore(name, ke… in createObjectStore()
|
D | IDBDatabaseBackendProxy.cpp | 78 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendProxy::createObjectStore(const String&… in createObjectStore()
|
D | IDBObjectStoreBackendProxy.cpp | 48 PassRefPtr<IDBObjectStoreBackendInterface> IDBObjectStoreBackendProxy::create(PassOwnPtr<WebIDBObje… in create()
|