OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebIDBTransaction
(Results
1 - 17
of
17
) sorted by null
/external/webkit/Source/WebKit/chromium/public/
WebIDBObjectStore.h
33
#include "
WebIDBTransaction
.h"
39
class
WebIDBTransaction
;
62
virtual void get(const WebIDBKey&, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
70
virtual void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
71
virtual void deleteFunction(const WebIDBKey&, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
72
virtual void clear(WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
73
virtual WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const
WebIDBTransaction
&, WebExceptionCode&)
84
virtual void deleteIndex(const WebString& name, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
85
virtual void openCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
WebIDBTransaction.h
40
class
WebIDBTransaction
{
42
virtual ~
WebIDBTransaction
() { }
65
WebIDBTransaction
() {}
WebIDBIndex.h
30
#include "
WebIDBTransaction
.h"
65
virtual void openObjectCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
66
virtual void openKeyCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
67
virtual void getObject(const WebIDBKey&, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
68
virtual void getKey(const WebIDBKey&, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
WebIDBDatabase.h
39
class
WebIDBTransaction
;
61
virtual WebIDBObjectStore* createObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const
WebIDBTransaction
&, WebExceptionCode&)
66
virtual void deleteObjectStore(const WebString& name, const
WebIDBTransaction
& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); }
68
// Transfers ownership of the
WebIDBTransaction
to the caller.
69
virtual
WebIDBTransaction
* transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec)
74
virtual
WebIDBTransaction
* transaction(const WebDOMStringList& names, unsigned short mode, unsigned long, WebExceptionCode& ec)
WebIDBCallbacks.h
39
class
WebIDBTransaction
;
54
virtual void onSuccess(
WebIDBTransaction
*) { WEBKIT_ASSERT_NOT_REACHED(); }
/external/webkit/Source/WebKit/chromium/src/
IDBTransactionBackendProxy.h
37
class
WebIDBTransaction
;
41
static PassRefPtr<IDBTransactionBackendInterface> create(PassOwnPtr<
WebIDBTransaction
>);
51
WebIDBTransaction
* getWebIDBTransaction() const { return m_webIDBTransaction.get(); }
54
IDBTransactionBackendProxy(PassOwnPtr<
WebIDBTransaction
>);
56
OwnPtr<
WebIDBTransaction
> m_webIDBTransaction;
WebIDBObjectStoreImpl.h
52
void get(const WebIDBKey& key, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
53
void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
54
void deleteFunction(const WebIDBKey& key, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
55
void clear(WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
57
WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const
WebIDBTransaction
&, WebExceptionCode&);
59
void deleteIndex(const WebString& name, const
WebIDBTransaction
&, WebExceptionCode&);
61
void openCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
WebIDBIndexImpl.h
51
virtual void openObjectCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
52
virtual void openKeyCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
53
virtual void getObject(const WebIDBKey&, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
54
virtual void getKey(const WebIDBKey&, WebIDBCallbacks*, const
WebIDBTransaction
&, WebExceptionCode&);
WebIDBDatabaseImpl.h
44
class
WebIDBTransaction
;
56
virtual WebIDBObjectStore* createObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const
WebIDBTransaction
&, WebExceptionCode&);
57
virtual void deleteObjectStore(const WebString& name, const
WebIDBTransaction
&, WebExceptionCode&);
59
virtual
WebIDBTransaction
* transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode&);
WebIDBIndexImpl.cpp
71
void WebIDBIndexImpl::openObjectCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
76
void WebIDBIndexImpl::openKeyCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
81
void WebIDBIndexImpl::getObject(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
86
void WebIDBIndexImpl::getKey(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
WebIDBObjectStoreImpl.cpp
39
#include "
WebIDBTransaction
.h"
70
void WebIDBObjectStoreImpl::get(const WebIDBKey& key, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
75
void WebIDBObjectStoreImpl::put(const WebSerializedScriptValue& value, const WebIDBKey& key, PutMode putMode, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
80
void WebIDBObjectStoreImpl::deleteFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
85
void WebIDBObjectStoreImpl::clear(WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
90
WebIDBIndex* WebIDBObjectStoreImpl::createIndex(const WebString& name, const WebString& keyPath, bool unique, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
106
void WebIDBObjectStoreImpl::deleteIndex(const WebString& name, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
111
void WebIDBObjectStoreImpl::openCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
IDBTransactionBackendProxy.cpp
35
#include "
WebIDBTransaction
.h"
42
PassRefPtr<IDBTransactionBackendInterface> IDBTransactionBackendProxy::create(PassOwnPtr<
WebIDBTransaction
> transaction)
47
IDBTransactionBackendProxy::IDBTransactionBackendProxy(PassOwnPtr<
WebIDBTransaction
> transaction)
WebIDBCallbacksImpl.h
48
virtual void onSuccess(
WebIDBTransaction
*);
WebIDBTransactionImpl.h
32
#include "
WebIDBTransaction
.h"
39
class WebIDBTransactionImpl: public
WebIDBTransaction
{
WebIDBDatabaseImpl.cpp
69
WebIDBObjectStore* WebIDBDatabaseImpl::createObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
79
void WebIDBDatabaseImpl::deleteObjectStore(const WebString& name, const
WebIDBTransaction
& transaction, WebExceptionCode& ec)
89
WebIDBTransaction
* WebIDBDatabaseImpl::transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec)
WebIDBCallbacksImpl.cpp
41
#include "
WebIDBTransaction
.h"
77
void WebIDBCallbacksImpl::onSuccess(
WebIDBTransaction
* webKitInstance)
IDBDatabaseBackendProxy.cpp
43
#include "
WebIDBTransaction
.h"
105
WebIDBTransaction
* transaction = m_webIDBDatabase->transaction(names, mode, ec);
Completed in 364 milliseconds