OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebIDBCallbacksImpl
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl.cpp
30
#include "modules/indexeddb/
WebIDBCallbacksImpl
.h"
54
PassOwnPtr<
WebIDBCallbacksImpl
>
WebIDBCallbacksImpl
::create(PassRefPtr<IDBRequest> request)
56
return adoptPtr(new
WebIDBCallbacksImpl
(request));
59
WebIDBCallbacksImpl
::
WebIDBCallbacksImpl
(PassRefPtr<IDBRequest> request)
64
WebIDBCallbacksImpl
::~
WebIDBCallbacksImpl
()
68
void
WebIDBCallbacksImpl
::onError(const WebIDBDatabaseError& error)
73
void
WebIDBCallbacksImpl
::onSuccess(const blink::WebVector<blink::WebString>& webStringList
[
all
...]
WebIDBCallbacksImpl.h
51
class
WebIDBCallbacksImpl
: public blink::WebIDBCallbacks {
53
static PassOwnPtr<
WebIDBCallbacksImpl
> create(PassRefPtr<IDBRequest>);
55
virtual ~
WebIDBCallbacksImpl
();
72
explicit
WebIDBCallbacksImpl
(PassRefPtr<IDBRequest>);
IDBIndex.cpp
37
#include "modules/indexeddb/
WebIDBCallbacksImpl
.h"
97
backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, direction, false, WebIDBDatabase::NormalTask,
WebIDBCallbacksImpl
::create(request).leakPtr());
122
backendDB()->count(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(),
WebIDBCallbacksImpl
::create(request).leakPtr());
151
backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), direction, true, WebIDBDatabase::NormalTask,
WebIDBCallbacksImpl
::create(request).leakPtr());
180
backendDB()->get(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), false,
WebIDBCallbacksImpl
::create(request).leakPtr());
209
backendDB()->get(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), true,
WebIDBCallbacksImpl
::create(request).leakPtr());
IDBFactory.cpp
42
#include "modules/indexeddb/
WebIDBCallbacksImpl
.h"
92
blink::Platform::current()->idbFactory()->getDatabaseNames(
WebIDBCallbacksImpl
::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
130
blink::Platform::current()->idbFactory()->open(name, version, transactionId,
WebIDBCallbacksImpl
::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks.release()).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
162
blink::Platform::current()->idbFactory()->deleteDatabase(name,
WebIDBCallbacksImpl
::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
IDBObjectStore.cpp
41
#include "modules/indexeddb/
WebIDBCallbacksImpl
.h"
103
backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), false,
WebIDBCallbacksImpl
::create(request).leakPtr());
234
backendDB()->put(m_transaction->id(), id(), blink::WebData(valueBuffer), key.release(), static_cast<WebIDBDatabase::PutMode>(putMode),
WebIDBCallbacksImpl
::create(request).leakPtr(), indexIds, indexKeys);
267
backendDB()->deleteRange(m_transaction->id(), id(), keyRange.release(),
WebIDBCallbacksImpl
::create(request).leakPtr());
292
backendDB()->clear(m_transaction->id(), id(),
WebIDBCallbacksImpl
::create(request).leakPtr());
544
backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, range, direction, false, taskType,
WebIDBCallbacksImpl
::create(request).leakPtr());
575
backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), direction, true, WebIDBDatabase::NormalTask,
WebIDBCallbacksImpl
::create(request).leakPtr());
600
backendDB()->count(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(),
WebIDBCallbacksImpl
::create(request).leakPtr());
IDBCursor.cpp
39
#include "modules/indexeddb/
WebIDBCallbacksImpl
.h"
170
m_backend->advance(count,
WebIDBCallbacksImpl
::create(m_request).leakPtr());
245
m_backend->continueFunction(key, primaryKey,
WebIDBCallbacksImpl
::create(m_request).leakPtr());
281
m_transaction->backendDB()->deleteRange(m_transaction->id(), effectiveObjectStore()->id(), keyRange.release(),
WebIDBCallbacksImpl
::create(request).leakPtr());
/external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk
114
third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl
.cpp \
modules.target.darwin-mips.mk
114
third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl
.cpp \
modules.target.darwin-x86.mk
114
third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl
.cpp \
modules.target.linux-arm.mk
114
third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl
.cpp \
modules.target.linux-mips.mk
114
third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl
.cpp \
modules.target.linux-x86.mk
114
third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl
.cpp \
Completed in 310 milliseconds