Searched refs:scheme (Results 1 - 25 of 44) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dhttp.c48 .scheme = "http",
H A Dhttps.c49 .scheme = "https",
H A Dftp.c468 .scheme = "ftp",
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dopen.c36 * Find opener for URI scheme
38 * @v scheme URI scheme
41 struct uri_opener * xfer_uri_opener ( const char *scheme ) {
45 if ( strcmp ( scheme, opener->scheme ) == 0 )
73 /* Find opener which supports this URI scheme */
74 opener = xfer_uri_opener ( resolved_uri->scheme );
77 "unsupported URI scheme \"%s\"\n",
78 INTF_DBG ( intf ), resolved_uri->scheme );
[all...]
H A Dhw.c67 .scheme = "hw",
H A Duri.c43 if ( uri->scheme )
44 DBG ( " scheme \"%s\"", uri->scheme );
101 * URI with scheme="C",opaque="\path\to\file".
105 uri->scheme = raw;
224 static char separators[] = { /* scheme */ 0, /* opaque */ ':',
255 /* Print :// if we're non-opaque and had a scheme */
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A DtstURI.py9 if uri.scheme() != 'http':
10 print "Error parsing URI: wrong scheme"
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dopen.h50 * This is the "scheme" portion of the URI, e.g. "http" or
53 const char *scheme; member in struct:uri_opener
92 extern struct uri_opener * xfer_uri_opener ( const char *scheme );
H A Duri.h31 * scheme = "http", host = "www.ipxe.org", path = "/wiki"
39 * scheme = "mailto", opaque = "bob@nowhere.com"
43 * scheme = "ftp", user = "joe", password = "secret",
51 const char *scheme; member in struct:uri
91 #define uri_get_field( uri, field ) (&uri->scheme)[field]
108 * An absolute URI begins with a scheme, e.g. "http:" or "mailto:".
113 return ( uri->scheme != NULL );
/vbox/src/libs/libxml2-2.6.31/
H A DtestURI.c36 if (uri->scheme) printf("scheme: %s\n", uri->scheme);
H A Duri.c131 * scheme = alpha *( alpha | digit | "+" | "-" | "." )
244 if (uri->scheme != NULL) {
245 p = uri->scheme;
408 } else if (uri->scheme != NULL) {
587 if (uri->scheme != NULL) xmlFree(uri->scheme);
588 uri->scheme = NULL;
617 if (uri->scheme != NULL) xmlFree(uri->scheme);
1011 if (uri->scheme) {
[all...]
H A Dc14n.c1076 if (xmlStrlen((const xmlChar *) uri->scheme) == 0) {
1077 xmlC14NErrRelativeNamespace(uri->scheme);
1081 if ((xmlStrcasecmp((const xmlChar *) uri->scheme, BAD_CAST "urn") != 0)
1082 && (xmlStrcasecmp((const xmlChar *) uri->scheme, BAD_CAST "dav") !=0)
1084 xmlC14NErrRelativeNamespace(uri->scheme);
H A Dnanoftp.c325 if ((uri->scheme == NULL) || (uri->server == NULL)) {
330 ctxt->protocol = xmlMemStrdup(uri->scheme);
386 if ((uri->scheme == NULL) || (uri->server == NULL)) {
390 if ((strcmp(ctxt->protocol, uri->scheme)) ||
446 if ((uri == NULL) || (uri->scheme == NULL) ||
447 (strcmp(uri->scheme, "ftp")) || (uri->server == NULL)) {
1165 * If you need support for other Proxy authentication scheme
H A Dnanohttp.c304 if ((uri->scheme == NULL) || (uri->server == NULL)) {
309 ctxt->protocol = xmlMemStrdup(uri->scheme);
354 if ((uri == NULL) || (uri->scheme == NULL) ||
355 (strcmp(uri->scheme, "http")) || (uri->server == NULL)) {
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Duri.h34 char *scheme; /* the URI scheme */ member in struct:_xmlURI
H A Dtree.h69 * A buffer allocation scheme can be defined to either match exactly the
631 xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme);
676 xmlBufferAllocationScheme scheme);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dbits1_5.idl96 HRESULT RemoveCredentials(BG_AUTH_TARGET target, BG_AUTH_SCHEME scheme);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dbits1_5.idl96 HRESULT RemoveCredentials(BG_AUTH_TARGET target, BG_AUTH_SCHEME scheme);
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/
H A Dtftp.c1147 .scheme = "tftp",
1167 .scheme = "tftpsize",
1187 .scheme = "tftm",
1206 .scheme = "mtftp",
H A Dslam.c754 .scheme = "x-slam",
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dautoboot.c381 * unsupported URI scheme in the root path, since it may
385 ( xfer_uri_opener ( root_path->scheme ) == NULL ) ) {
/vbox/src/libs/xpcom18a4/python/
H A Dfile.py166 if not url_ob.scheme:
167 raise ValueError, ("The URI '%s' is invalid (no scheme)"
/vbox/src/VBox/ValidationKit/testboxscript/
H A Dtestboxconnection.py145 if self._oParsedUrl.scheme == 'https': # pylint: disable=E1101
/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/
H A Dib_srp.c579 .scheme = "ib_srp",
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dudp.c445 .scheme = "udp",

Completed in 110 milliseconds

12