OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:idbDatabase
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBOpenDBRequest.cpp
31
#include "modules/indexeddb/
IDBDatabase
.h"
90
RefPtr<
IDBDatabase
>
idbDatabase
=
IDBDatabase
::create(executionContext(), backend, m_databaseCallbacks.release());
91
idbDatabase
->setMetadata(metadata);
100
m_transaction = IDBTransaction::create(executionContext(), m_transactionId,
idbDatabase
.get(), this, oldMetadata);
101
setResult(IDBAny::create(
idbDatabase
.release()));
120
RefPtr<
IDBDatabase
>
idbDatabase
;
124
idbDatabase
= resultAsAny()->idbDatabase()
[
all
...]
IDBAny.h
43
class
IDBDatabase
;
102
IDBDatabase
*
idbDatabase
() const;
116
explicit IDBAny(PassRefPtr<
IDBDatabase
>);
132
const RefPtr<
IDBDatabase
> m_idbDatabase;
IDBDatabase.cpp
27
#include "modules/indexeddb/
IDBDatabase
.h"
52
const char
IDBDatabase
::indexDeletedErrorMessage[] = "The index or its object store has been deleted.";
53
const char
IDBDatabase
::isKeyCursorErrorMessage[] = "The cursor is a key cursor.";
54
const char
IDBDatabase
::noKeyOrKeyRangeErrorMessage[] = "No key or key range specified.";
55
const char
IDBDatabase
::noSuchIndexErrorMessage[] = "The specified index was not found.";
56
const char
IDBDatabase
::noSuchObjectStoreErrorMessage[] = "The specified object store was not found.";
57
const char
IDBDatabase
::noValueErrorMessage[] = "The cursor is being iterated or has iterated past its end.";
58
const char
IDBDatabase
::notValidKeyErrorMessage[] = "The parameter is not a valid key.";
59
const char
IDBDatabase
::notVersionChangeTransactionErrorMessage[] = "The database is not running a version change transaction.";
60
const char
IDBDatabase
::objectStoreDeletedErrorMessage[] = "The object store has been deleted."
[
all
...]
IDBAny.cpp
31
#include "modules/indexeddb/
IDBDatabase
.h"
83
IDBDatabase
* IDBAny::
idbDatabase
() const
151
IDBAny::IDBAny(PassRefPtr<
IDBDatabase
> value)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp
48
#include "modules/indexeddb/
IDBDatabase
.h"
140
virtual void execute(PassRefPtr<
IDBDatabase
>) = 0;
175
RefPtr<
IDBDatabase
>
idbDatabase
= requestResult->
idbDatabase
();
176
m_executableWithDatabase->execute(
idbDatabase
);
178
idbDatabase
->close();
200
static PassRefPtr<IDBTransaction> transactionForDatabase(ExecutionContext* executionContext,
IDBDatabase
*
idbDatabase
, const String& objectStoreName, const String& mode = IDBTransaction::modeReadOnly())
203
RefPtr<IDBTransaction> idbTransaction =
idbDatabase
->transaction(executionContext, objectStoreName, mode, exceptionState)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilities.cpp
124
return toV8(impl->
idbDatabase
(), creationContext, isolate);
Completed in 29 milliseconds