Lines Matching defs:origin

35  * by web sites. An origin consists of a host name, a protocol, and a port
36 * number. Web sites with the same security origin can access each other's
39 * Use #webkit_web_frame_get_security_origin to get the security origin of a
42 * Database quotas and usages are also defined per security origin. The
43 * cumulative disk usage of an origin's databases may be retrieved with
44 * #webkit_security_origin_get_web_database_usage. An origin's quota can be
144 * The protocol of the security origin.
151 _("The protocol of the security origin"),
158 * The host of the security origin.
165 _("The host of the security origin"),
172 * The port of the security origin.
179 _("The port of the security origin"),
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"),
199 * The web database qouta of the security origin in bytes.
206 _("The web database quota of the security origin in bytes"),
224 * Returns the protocol for the security origin.
226 * Returns: the protocol for the security origin
247 * Returns the hostname for the security origin.
249 * Returns: the hostname for the security origin
270 * Returns the port for the security origin.
272 * Returns: the port for the security origin
288 * Returns the cumulative size of all Web Database database's in the origin
311 * Returns the quota for Web Database storage of the security origin
335 * Adjust the quota for Web Database storage of the security origin
353 * Returns a list of all Web Databases in the security origin.
356 * #GList of databases in the security origin.
391 "security-origin", securityOrigin,
414 WebKitSecurityOrigin* origin = (WebKitSecurityOrigin*) g_hash_table_lookup(table, coreOrigin);
416 if (!origin) {
417 origin = WEBKIT_SECURITY_ORIGIN(g_object_new(WEBKIT_TYPE_SECURITY_ORIGIN, NULL));
418 origin->priv->coreOrigin = coreOrigin;
419 g_hash_table_insert(table, coreOrigin, origin);
422 return origin;