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

  /external/webkit/WebKit/qt/Api/
qwebsecurityorigin.cpp 58 scripting or databases.
69 Use databases() to access the databases defined within a security origin. The
70 disk usage of the origin's databases can be limited with setDatabaseQuota().
121 Returns the number of bytes all databases in the security origin
134 Returns the quota for the databases in the security origin.
146 Sets the quota for the databases in the security origin to \a quota bytes.
150 to databases in this origin.
195 Returns a list of all databases defined in the security origin.
197 QList<QWebDatabase> QWebSecurityOrigin::databases() cons function in class:QWebSecurityOrigin
199 QList<QWebDatabase> databases; local
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitsecurityorigin.cpp 44 * cumulative disk usage of an origin's databases may be retrieved with
187 * The cumulative size of all web databases in the security origin in bytes.
194 _("The cumulative size of all web databases in the security origin"),
292 * Returns: the cumulative size of all databases
354 * Returns a list of all Web Databases in the security origin.
356 * Returns: a #Glist of databases in the security origin.
363 GList* databases = NULL; local
374 databases = g_list_append(databases, database);
378 return databases;
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 70 * Separate databases are kept for each external storage card we see (using the
196 * Touch this particular database and garbage collect old databases.
197 * An LRU cache system is used to clean up databases for old external
209 // delete least recently used databases if we are over the limit
210 String[] databases = mContext.databaseList(); local
211 int count = databases.length;
214 // delete external databases that have not been used in the past two months
216 for (int i = 0; i < databases.length; i++) {
217 File other = mContext.getDatabasePath(databases[i]);
218 if (INTERNAL_DATABASE_NAME.equals(databases[i]) || file.equals(other))
    [all...]

Completed in 133 milliseconds