Lines Matching full:database
37 * resources for client-side scripting or database access.
42 * Database quotas and usages are also defined per security origin. The
184 * WebKitSecurityOrigin:web-database-usage:
191 g_param_spec_uint64("web-database-usage",
192 _("Web Database Usage"),
197 * WebKitSecurityOrigin:web-database-quota:
199 * The web database qouta of the security origin in bytes.
204 g_param_spec_uint64("web-database-quota",
205 _("Web Database Quota"),
206 _("The web database quota of the security origin in bytes"),
288 * Returns the cumulative size of all Web Database database's in the origin
299 #if ENABLE(DATABASE)
311 * Returns the quota for Web Database storage of the security origin
314 * Returns: the Web Database quota
322 #if ENABLE(DATABASE)
333 * @quota: a new Web Database quota in bytes
335 * Adjust the quota for Web Database storage of the security origin
343 #if ENABLE(DATABASE)
365 #if ENABLE(DATABASE)
373 WebKitWebDatabase* database = webkit_security_origin_get_web_database(securityOrigin, databaseNames[i].utf8().data());
374 databases = g_list_append(databases, database);
387 WebKitWebDatabase* database = (WebKitWebDatabase*) g_hash_table_lookup(databaseHash, databaseName);
389 if (!database) {
390 database = WEBKIT_WEB_DATABASE(g_object_new(WEBKIT_TYPE_WEB_DATABASE,
394 g_hash_table_insert(databaseHash, g_strdup(databaseName), database);
397 return database;