Searched defs:IDBObjectStoreBackendImpl (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/storage/
H A DIDBObjectStoreBackendImpl.h43 class IDBObjectStoreBackendImpl : public IDBObjectStoreBackendInterface { class in namespace:WebCore
45 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement)
47 return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, id, name, keyPath, autoIncrement));
49 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement)
51 return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, name, keyPath, autoIncrement));
53 virtual ~IDBObjectStoreBackendImpl();
81 IDBObjectStoreBackendImpl(IDBBackingStore*, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement);
82 IDBObjectStoreBackendImpl(IDBBackingStore*, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement);
87 static PassRefPtr<IDBKey> selectKeyForPut(IDBObjectStoreBackendImpl*, IDBKey*, PutMode, IDBCallbacks*, RefPtr<SerializedScriptValue>&);
89 static void getInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl>, PassRefPt
[all...]
H A DIDBObjectStoreBackendImpl.cpp27 #include "IDBObjectStoreBackendImpl.h"
49 IDBObjectStoreBackendImpl::~IDBObjectStoreBackendImpl()
53 IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement) function in class:WebCore::IDBObjectStoreBackendImpl
65 IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement) function in class:WebCore::IDBObjectStoreBackendImpl
76 PassRefPtr<DOMStringList> IDBObjectStoreBackendImpl::indexNames() const
84 void IDBObjectStoreBackendImpl::get(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
86 RefPtr<IDBObjectStoreBackendImpl> objectStor
[all...]

Completed in 75 milliseconds