OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:opendatabasesync
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
WorkerGlobalScopeWebDatabase.idl
30
[RuntimeEnabled=Database, RaisesException] DatabaseSync
openDatabaseSync
(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
WorkerGlobalScopeWebDatabase.cpp
63
PassRefPtr<DatabaseSync> WorkerGlobalScopeWebDatabase::
openDatabaseSync
(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState& exceptionState)
70
database = dbManager.
openDatabaseSync
(context, name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
WorkerGlobalScopeWebDatabase.h
46
static PassRefPtr<DatabaseSync>
openDatabaseSync
(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
DatabaseManager.h
77
PassRefPtr<DatabaseSync>
openDatabaseSync
(ExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback>, DatabaseError&, String& errorMessage);
DatabaseManager.cpp
244
PassRefPtr<DatabaseSync> DatabaseManager::
openDatabaseSync
(ExecutionContext* context,
Completed in 81 milliseconds