OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:createObjectStore
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebKit/chromium/public/
WebIDBDatabase.h
61
virtual WebIDBObjectStore*
createObjectStore
(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBTransaction&, WebExceptionCode&)
/external/webkit/Source/WebKit/chromium/src/
IDBDatabaseBackendProxy.cpp
78
PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendProxy::
createObjectStore
(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
83
WebIDBObjectStore* objectStore = m_webIDBDatabase->
createObjectStore
(name, keyPath, autoIncrement, *transactionProxy->getWebIDBTransaction(), ec);
WebIDBDatabaseImpl.cpp
69
WebIDBObjectStore* WebIDBDatabaseImpl::
createObjectStore
(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBTransaction& transaction, WebExceptionCode& ec)
71
RefPtr<IDBObjectStoreBackendInterface> objectStore = m_databaseBackend->
createObjectStore
(name, keyPath, autoIncrement, transaction.getIDBTransactionBackendInterface(), ec);
/external/webkit/Source/WebCore/storage/
IDBDatabase.h
63
PassRefPtr<IDBObjectStore>
createObjectStore
(const String& name, ExceptionCode& ec) { return
createObjectStore
(name, OptionsObject(), ec); }
68
PassRefPtr<IDBObjectStore>
createObjectStore
(const String& name, const OptionsObject&, ExceptionCode&);
IDBDatabase.cpp
75
PassRefPtr<IDBObjectStore> IDBDatabase::
createObjectStore
(const String& name, const OptionsObject& options, ExceptionCode& ec)
88
RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->
createObjectStore
(name, keyPath, autoIncrement, m_setVersionTransaction->backend(), ec);
IDBDatabaseBackendImpl.cpp
100
PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::
createObjectStore
(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec)
128
if (!database->m_backingStore->
createObjectStore
(database->id(), objectStore->name(), objectStore->keyPath(), objectStore->autoIncrement(), objectStoreId)) {
IDBSQLiteBackingStore.cpp
266
bool IDBSQLiteBackingStore::
createObjectStore
(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assignedObjectStoreId)
[
all
...]
IDBLevelDBBackingStore.cpp
[
all
...]
Completed in 568 milliseconds