Searched defs:deleteFunction (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DIDBCursorBackendProxy.cpp87 void IDBCursorBackendProxy::deleteFunction(PassRefPtr<IDBCallbacks> callbacks, ExceptionCode& ec) function in class:WebKit::IDBCursorBackendProxy
89 m_idbCursor->deleteFunction(new WebIDBCallbacksImpl(callbacks), ec);
H A DWebIDBCursorImpl.cpp80 void WebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec) function in class:WebKit::WebIDBCursorImpl
82 m_idbCursorBackend->deleteFunction(IDBCallbacksProxy::create(callbacks), ec);
H A DIDBObjectStoreBackendProxy.cpp93 void IDBObjectStoreBackendProxy::deleteFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) function in class:WebKit::IDBObjectStoreBackendProxy
98 m_webIDBObjectStore->deleteFunction(key, new WebIDBCallbacksImpl(callbacks), *transactionProxy->getWebIDBTransaction(), ec);
H A DWebIDBObjectStoreImpl.cpp80 void WebIDBObjectStoreImpl::deleteFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) function in class:WebKit::WebIDBObjectStoreImpl
82 m_objectStore->deleteFunction(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
/external/webkit/Source/WebCore/storage/
H A DIDBCursor.cpp109 PassRefPtr<IDBRequest> IDBCursor::deleteFunction(ScriptExecutionContext* context, ExceptionCode& ec) function in class:WebCore::IDBCursor
112 m_backend->deleteFunction(request, ec);
H A DIDBCursorBackendImpl.cpp113 void IDBCursorBackendImpl::deleteFunction(PassRefPtr<IDBCallbacks> prpCallbacks, ExceptionCode& ec) function in class:WebCore::IDBCursorBackendImpl
120 m_objectStore->deleteFunction(m_cursor->primaryKey(), prpCallbacks, m_transaction.get(), ec);
H A DIDBObjectStore.cpp103 PassRefPtr<IDBRequest> IDBObjectStore::deleteFunction(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec) function in class:WebCore::IDBObjectStore
106 m_objectStore->deleteFunction(key, request, m_transaction->backend(), ec);
H A DIDBObjectStoreBackendImpl.cpp272 void IDBObjectStoreBackendImpl::deleteFunction(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) function in class:WebCore::IDBObjectStoreBackendImpl
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBCursor.h79 virtual void remove(WebIDBCallbacks* callbacks, WebExceptionCode& ec) { deleteFunction(callbacks, ec); }
80 virtual void deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec) { remove(callbacks, ec); } function in class:WebKit::WebIDBCursor
H A DWebIDBObjectStore.h71 virtual void deleteFunction(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBObjectStore

Completed in 779 milliseconds