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
32
#include "modules/indexeddb/
IDBDatabase
.h"
95
IDBDatabase
*
idbDatabase
=
IDBDatabase
::create(executionContext(), backend, m_databaseCallbacks.release());
96
idbDatabase
->setMetadata(metadata);
105
m_transaction = IDBTransaction::create(scriptState(), m_transactionId,
idbDatabase
, this, oldMetadata);
106
setResult(IDBAny::create(
idbDatabase
));
125
IDBDatabase
*
idbDatabase
= 0;
129
idbDatabase
= resultAsAny()->idbDatabase()
[
all
...]
InspectorIndexedDBAgent.cpp
50
#include "modules/indexeddb/
IDBDatabase
.h"
143
virtual void execute(
IDBDatabase
*) = 0;
179
IDBDatabase
*
idbDatabase
= requestResult->
idbDatabase
();
180
m_executableWithDatabase->execute(
idbDatabase
);
182
idbDatabase
->close();
204
static IDBTransaction* transactionForDatabase(ScriptState* scriptState,
IDBDatabase
*
idbDatabase
, const String& objectStoreName, const String& mode = IndexedDBNames::readonly)
207
IDBTransaction* idbTransaction =
idbDatabase
->transaction(scriptState, objectStoreName, mode, exceptionState)
[
all
...]
IDBAny.h
41
class
IDBDatabase
;
107
IDBDatabase
*
idbDatabase
() const;
122
explicit IDBAny(
IDBDatabase
*);
138
const Member<
IDBDatabase
> m_idbDatabase;
IDBDatabase.cpp
27
#include "modules/indexeddb/
IDBDatabase
.h"
55
const char
IDBDatabase
::indexDeletedErrorMessage[] = "The index or its object store has been deleted.";
56
const char
IDBDatabase
::isKeyCursorErrorMessage[] = "The cursor is a key cursor.";
57
const char
IDBDatabase
::noKeyOrKeyRangeErrorMessage[] = "No key or key range specified.";
58
const char
IDBDatabase
::noSuchIndexErrorMessage[] = "The specified index was not found.";
59
const char
IDBDatabase
::noSuchObjectStoreErrorMessage[] = "The specified object store was not found.";
60
const char
IDBDatabase
::noValueErrorMessage[] = "The cursor is being iterated or has iterated past its end.";
61
const char
IDBDatabase
::notValidKeyErrorMessage[] = "The parameter is not a valid key.";
62
const char
IDBDatabase
::notVersionChangeTransactionErrorMessage[] = "The database is not running a version change transaction.";
63
const char
IDBDatabase
::objectStoreDeletedErrorMessage[] = "The object store has been deleted."
[
all
...]
IDBAny.cpp
31
#include "modules/indexeddb/
IDBDatabase
.h"
89
IDBDatabase
* IDBAny::
idbDatabase
() const
163
IDBAny::IDBAny(
IDBDatabase
* value)
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
IDBBindingUtilities.cpp
138
return toV8(impl->
idbDatabase
(), creationContext, isolate);
Completed in 62 milliseconds