Searched defs:databases (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DOriginAndDatabases.h47 Vector<WebCore::DatabaseDetails> databases; member in struct:WebKit::OriginAndDatabases
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebsecurityorigin.cpp45 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...]
/external/chromium/chrome/browser/tab_contents/
H A Dtab_specific_content_settings.h135 CannedBrowsingDataDatabaseHelper* databases() const { function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
/external/webkit/Source/WebCore/storage/chromium/
H A DDatabaseTrackerChromium.cpp149 void DatabaseTracker::getOpenDatabases(SecurityOrigin* origin, const String& name, HashSet<RefPtr<AbstractDatabase> >* databases) argument
164 databases->add(*it);
/external/chromium/chrome/browser/
H A Dbrowsing_data_database_helper.cc99 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/
H A Dwebkitsecurityorigin.cpp43 * 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
356 * #GList of databases in the security origin.
363 GList* databases = NULL; local
374 databases = g_list_append(databases, database);
378 return databases;
/external/webkit/Source/WebCore/storage/
H A DDatabaseTracker.cpp597 void DatabaseTracker::getOpenDatabases(SecurityOrigin* origin, const String& name, HashSet<RefPtr<AbstractDatabase> >* databases) argument
612 databases->add(*it);
744 // It is the caller's responsibility to make sure that nobody is trying to create, delete, open, or close databases in this origin while the deletion is
781 LOG_ERROR("Unable to prepare deletion of databases from origin %s from tracker", origin->databaseIdentifier().ascii().data());
788 LOG_ERROR("Unable to execute deletion of databases from origin %s from tracker", origin->databaseIdentifier().ascii().data());
801 LOG_ERROR("Unable to execute deletion of databases from origin %s from tracker", origin->databaseIdentifier().ascii().data());
1000 // deleteDatabaseFile has to release locks between looking up the list of databases to close and closing them. While this is in progress, the caller
1001 // is responsible for making sure no new databases are opened in the file to be deleted.
1023 // There are some open databases, lets check if they are for this origin.
1026 // There are some open databases fo
[all...]

Completed in 247 milliseconds