HomeSort by relevance Sort by last modified time
    Searched refs:databases (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebKit2/Shared/
OriginAndDatabases.cpp 37 encoder->encode(CoreIPC::In(originIdentifier, originQuota, originUsage, databases));
42 return decoder->decode(CoreIPC::Out(originAndDatabases.originIdentifier, originAndDatabases.originQuota, originAndDatabases.originUsage, originAndDatabases.databases));
OriginAndDatabases.h 47 Vector<WebCore::DatabaseDetails> databases; member in struct:WebKit::OriginAndDatabases
  /external/webkit/Source/WebKit/chromium/src/
IDBFactoryBackendProxy.h 47 PassRefPtr<WebCore::DOMStringList> databases(void) const;
  /external/webkit/Source/WebKit/qt/Api/
qwebsecurityorigin.cpp 45 scripting or databases.
66 Use databases() to access the databases defined within a security origin. The
67 disk usage of the origin's databases can be limited with setDatabaseQuota().
118 Returns the number of bytes all databases in the security origin
131 Returns the quota for the databases in the security origin.
143 Sets the quota for the databases in the security origin to \a quota bytes.
147 to databases in this origin.
198 Returns a list of all databases defined in the security origin.
200 QList<QWebDatabase> QWebSecurityOrigin::databases() cons function in class:QWebSecurityOrigin
202 QList<QWebDatabase> databases; local
    [all...]
qwebsecurityorigin.h 56 QList<QWebDatabase> databases() const;
  /external/webkit/LayoutTests/storage/
multiple-databases-garbage-collection.js 27 persistentDB = openDatabaseWithSuffix("MultipleDatabasesTest1", "1.0", "Test one out of a set of databases being destroyed (1)", 32768);
28 forgottenDB = openDatabaseWithSuffix("MultipleDatabasesTest2", "1.0", "Test one out of a set of databases being destroyed (2)", 32768);
  /external/webkit/Source/WebKit2/UIProcess/
WebDatabaseManagerProxy.cpp 122 // FIXME (Multi-WebProcess): Databases shouldn't be stored in the web process.
142 size_t databasesCount = originAndDatabases.databases.size();
143 Vector<RefPtr<APIObject> > databases(databasesCount);
146 const DatabaseDetails& details = originAndDatabases.databases[i];
153 databases.append(ImmutableDictionary::adopt(detailsMap));
160 originAndDatabasesMap.set(databaseDetailsKey(), ImmutableArray::adopt(databases));
175 // FIXME (Multi-WebProcess): Databases shouldn't be stored in the web process.
198 // FIXME (Multi-WebProcess): Databases shouldn't be stored in the web process.
204 // FIXME (Multi-WebProcess): Databases shouldn't be stored in the web process.
210 // FIXME (Multi-WebProcess): Databases shouldn't be stored in the web process
    [all...]
  /external/chromium/chrome/browser/
browsing_data_database_helper.cc 99 std::vector<string16> databases; local
100 ori->GetAllDatabaseNames(&databases);
101 for (std::vector<string16>::const_iterator db = databases.begin();
102 db != databases.end(); ++db) {
  /external/webkit/Source/WebKit/gtk/webkit/
webkitsecurityorigin.cpp 43 * cumulative disk usage of an origin's databases may be retrieved with
186 * The cumulative size of all web databases in the security origin in bytes.
193 _("The cumulative size of all web databases in the security origin"),
291 * Returns: the cumulative size of all databases
353 * Returns a list of all Web Databases in the security origin.
356 * #GList of databases in the security origin.
363 GList* databases = NULL; local
374 databases = g_list_append(databases, database);
378 return databases;
    [all...]
  /external/webkit/Source/WebCore/storage/chromium/
DatabaseTrackerChromium.cpp 149 void DatabaseTracker::getOpenDatabases(SecurityOrigin* origin, const String& name, HashSet<RefPtr<AbstractDatabase> >* databases)
164 databases->add(*it);
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.h 135 CannedBrowsingDataDatabaseHelper* databases() const { function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
tab_specific_content_settings.cc 187 blocked_local_shared_objects_.databases()->AddDatabase(
191 allowed_local_shared_objects_.databases()->AddDatabase(
  /external/webkit/Source/WebCore/storage/
DatabaseTracker.h 77 void getOpenDatabases(SecurityOrigin* origin, const String& name, HashSet<RefPtr<AbstractDatabase> >* databases);
DatabaseTracker.cpp 105 return SQLiteFileSystem::appendDatabaseFileNameToPath(m_databaseDirectoryPath, "Databases.db");
131 if (!m_database.tableExists("Databases")) {
132 if (!m_database.executeCommand("CREATE TABLE Databases (guid INTEGER PRIMARY KEY AUTOINCREMENT, origin TEXT, name TEXT, displayName TEXT, estimatedSize INTEGER, path TEXT);")) {
134 LOG_ERROR("Failed to create Databases table");
212 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?;");
292 SQLiteStatement statement(m_database, "SELECT path FROM Databases WHERE origin=? AND name=?;");
377 SQLiteStatement statement(m_database, "SELECT name FROM Databases where origin=?;");
428 SQLiteStatement statement(m_database, "SELECT displayName, estimatedSize FROM Databases WHERE origin=? AND name=?");
460 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?");
485 SQLiteStatement updateStatement(m_database, "UPDATE Databases SET displayName=?, estimatedSize=? WHERE guid=?")
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebDatabaseManager.cpp 105 originAndDatabases.databases.swap(detailsVector);
162 // prevent new data from being added to databases in that origin.
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java 72 // Stores reference to all databases opened in the current process.
126 // True if the database has attached databases.
239 * Write-ahead logging cannot be used with read-only databases so the value of
2029 ArrayList<SQLiteDatabase> databases = new ArrayList<SQLiteDatabase>(); local
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 110 * Separate databases are kept for each external storage card we see (using the
400 * For devices that have removable storage, we support keeping multiple databases
402 * On such devices, touch this particular database and garbage collect old databases.
403 * An LRU cache system is used to clean up databases for old external
425 // delete least recently used databases if we are over the limit
426 String[] databases = mContext.databaseList(); local
427 int count = databases.length;
430 // delete external databases that have not been used in the past two months
432 for (int i = 0; i < databases.length; i++) {
433 File other = mContext.getDatabasePath(databases[i])
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 175 QFile::remove("Databases.db");
566 QString dbFileName = path + "Databases.db";
593 // Remove all databases.
595 QList<QWebDatabase> dbs = origin.databases();
602 QVERIFY(!origin.databases().size());
605 QVERIFY(!origin.databases().size());
    [all...]
  /frameworks/base/docs/html/training/
training_toc.cs 138 <li><a href="<?cs var:toroot ?>training/basics/data-storage/databases.html">
139 Saving Data in SQL Databases
    [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 458 milliseconds