Home
last modified time | relevance | path

Searched refs:openDatabase (Results 1 – 25 of 43) sorted by relevance

12

/external/webkit/LayoutTests/storage/resources/
Ddatabase-common.js6 return openDatabase(name + DB_TEST_SUFFIX, version, description, size, callback);
8 return openDatabase(name + DB_TEST_SUFFIX, version, description, size);
/external/webkit/Source/WebCore/loader/appcache/
DApplicationCacheStorage.cpp101 openDatabase(false); in loadCacheGroup()
175 openDatabase(false); in loadManifestHostHashes()
485 openDatabase(false); in remainingSizeForOriginExcludingCache()
534 openDatabase(true); in storeUpdatedQuotaForOrigin()
592 void ApplicationCacheStorage::openDatabase(bool createIfDoesNotExist) in openDatabase() function in WebCore::ApplicationCacheStorage
781 openDatabase(true); in store()
905 openDatabase(true); in store()
952 openDatabase(true); in storeNewestCache()
1165 openDatabase(false); in remove()
1199 openDatabase(false); in empty()
[all …]
DApplicationCacheStorage.h124 void openDatabase(bool createIfDoesNotExist);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSQLiteOpenHelper.java40 database = SQLiteDatabase.openDatabase("path", null, 0); in getReadableDatabase()
51 database = SQLiteDatabase.openDatabase("path", null, 0); in getWritableDatabase()
/external/webkit/LayoutTests/storage/
Dopen-database-creation-callback-expected.txt1 This test tests openDatabase()'s creation callback.
Dopen-database-over-quota-expected.txt1 This tests that calling openDatabase with a size over 5MB doesn't assert on debug builds.
Dopen-database-empty-version-expected.txt1 This tests that calling openDatabase with an empty version string does not cause an exception to be…
Dopen-database-creation-callback-isolated-world-expected.txt3 This test tests that the openDatabase() creation callback is called in the right world.
Dopen-database-while-transaction-in-progress-expected.txt2 openDatabase() succeeded.
Dopen-database-set-empty-version-expected.txt1 This tests that calling openDatabase with an empty version string sets the current version of that …
Dsql-data-types.js82 var db = openDatabase("DataTypeTest", "1.0", "Database for sql data type test", 1);
/external/webkit/Source/WebCore/storage/
DStorageAreaSync.cpp228 void StorageAreaSync::openDatabase(OpenDatabaseParamType openingStrategy) in openDatabase() function in WebCore::StorageAreaSync
272 openDatabase(SkipIfNonExistent); in performImport()
345 openDatabase(CreateIfNonExistent); in sync()
DStorageAreaSync.h87 void openDatabase(OpenDatabaseParamType openingStrategy);
DDatabase.h57 …static PassRefPtr<Database> openDatabase(ScriptExecutionContext*, const String& name, const String…
DDatabase.cpp88 PassRefPtr<Database> Database::openDatabase(ScriptExecutionContext* context, const String& name, in openDatabase() function in WebCore::Database
/external/webkit/Source/WebKit/android/WebCoreSupport/
DGeolocationPermissions.cpp332 if (!openDatabase(&database)) in maybeLoadPermanentPermissions()
364 if (!openDatabase(&database)) in maybeStorePermanentPermissions()
400 bool GeolocationPermissions::openDatabase(SQLiteDatabase* database) in openDatabase() function in android::GeolocationPermissions
DGeolocationPermissions.h110 static bool openDatabase(WebCore::SQLiteDatabase*);
/external/webkit/Source/WebCore/platform/sql/
DSQLiteFileSystem.h58 static int openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDatabase);
DSQLiteFileSystem.cpp53 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool) in openDatabase() function in WebCore::SQLiteFileSystem
DSQLiteDatabase.cpp69 if (SQLiteFileSystem::openDatabase(filename, &m_db, forWebSQLDatabase) != SQLITE_OK) { in open()
/external/webkit/Source/WebCore/platform/sql/chromium/
DSQLiteFileSystemChromium.cpp47 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDataba… in openDatabase() function in WebCore::SQLiteFileSystem
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DSQLiteStatementTest.java25 database = SQLiteDatabase.openDatabase("path", null, 0); in setUp()
/external/webkit/Source/WebCore/workers/
DWorkerContext.cpp293 PassRefPtr<Database> WorkerContext::openDatabase(const String& name, const String& version, const S… in openDatabase() function in WebCore::WorkerContext
300 …return Database::openDatabase(this, name, version, displayName, estimatedSize, creationCallback, e… in openDatabase()
DWorkerContext.h115 …PassRefPtr<Database> openDatabase(const String& name, const String& version, const String& display…
DWorkerContext.idl53 …[EnabledAtRuntime, RequiresAllArguments=Raise] Database openDatabase(in DOMString name, in DOMStri…

12