HomeSort by relevance Sort by last modified time
    Searched refs:deleteFunction (Results 1 - 22 of 22) sorted by null

  /external/webkit/Source/WebKit/chromium/public/
WebIDBCursor.h 79 virtual void remove(WebIDBCallbacks* callbacks, WebExceptionCode& ec) { deleteFunction(callbacks, ec); }
80 virtual void deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec) { remove(callbacks, ec); }
WebIDBObjectStore.h 71 virtual void deleteFunction(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/webkit/Source/WebKit/chromium/src/
WebIDBCursorImpl.cpp 80 void WebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec)
82 m_idbCursorBackend->deleteFunction(IDBCallbacksProxy::create(callbacks), ec);
WebIDBCursorImpl.h 53 virtual void deleteFunction(WebIDBCallbacks*, WebExceptionCode&);
IDBCursorBackendProxy.cpp 87 void IDBCursorBackendProxy::deleteFunction(PassRefPtr<IDBCallbacks> callbacks, ExceptionCode& ec)
89 m_idbCursor->deleteFunction(new WebIDBCallbacksImpl(callbacks), ec);
IDBCursorBackendProxy.h 51 virtual void deleteFunction(PassRefPtr<WebCore::IDBCallbacks>, WebCore::ExceptionCode&);
WebIDBObjectStoreImpl.h 54 void deleteFunction(const WebIDBKey& key, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
WebIDBObjectStoreImpl.cpp 80 void WebIDBObjectStoreImpl::deleteFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
82 m_objectStore->deleteFunction(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
IDBObjectStoreBackendProxy.h 51 virtual void deleteFunction(PassRefPtr<WebCore::IDBKey>, PassRefPtr<WebCore::IDBCallbacks>, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&);
IDBObjectStoreBackendProxy.cpp 93 void IDBObjectStoreBackendProxy::deleteFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
98 m_webIDBObjectStore->deleteFunction(key, new WebIDBCallbacksImpl(callbacks), *transactionProxy->getWebIDBTransaction(), ec);
  /external/webkit/Source/WebCore/storage/
IDBCursorBackendInterface.h 62 virtual void deleteFunction(PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
IDBCursor.idl 45 [CallWith=ScriptExecutionContext, ImplementationFunction=deleteFunction] IDBRequest delete()
IDBCursor.cpp 109 PassRefPtr<IDBRequest> IDBCursor::deleteFunction(ScriptExecutionContext* context, ExceptionCode& ec)
112 m_backend->deleteFunction(request, ec);
IDBCursorBackendImpl.cpp 113 void IDBCursorBackendImpl::deleteFunction(PassRefPtr<IDBCallbacks> prpCallbacks, ExceptionCode& ec)
120 m_objectStore->deleteFunction(m_cursor->primaryKey(), prpCallbacks, m_transaction.get(), ec);
IDBObjectStore.idl 39 [CallWith=ScriptExecutionContext, ImplementationFunction=deleteFunction] IDBRequest delete(in IDBKey key)
IDBCursor.h 70 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, ExceptionCode&);
IDBCursorBackendImpl.h 63 virtual void deleteFunction(PassRefPtr<IDBCallbacks>, ExceptionCode&);
IDBObjectStoreBackendInterface.h 61 virtual void deleteFunction(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
IDBObjectStore.h 71 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, PassRefPtr<IDBKey> key, ExceptionCode&);
IDBObjectStore.cpp 103 PassRefPtr<IDBRequest> IDBObjectStore::deleteFunction(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec)
106 m_objectStore->deleteFunction(key, request, m_transaction->backend(), ec);
IDBObjectStoreBackendImpl.h 71 virtual void deleteFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
IDBObjectStoreBackendImpl.cpp 272 void IDBObjectStoreBackendImpl::deleteFunction(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)

Completed in 86 milliseconds