Lines Matching defs:uri
16 #include <libxml/uri.h>
25 xmlURIPtr uri;
28 uri = xmlCreateURI();
31 ret = xmlParseURIReference(uri, str);
36 if (uri->scheme) printf("scheme: %s\n", uri->scheme);
37 if (uri->opaque) printf("opaque: %s\n", uri->opaque);
38 if (uri->authority) printf("authority: %s\n", uri->authority);
39 if (uri->server) printf("server: %s\n", uri->server);
40 if (uri->user) printf("user: %s\n", uri->user);
41 if (uri->port != 0) printf("port: %d\n", uri->port);
42 if (uri->path) printf("path: %s\n", uri->path);
43 if (uri->query) printf("query: %s\n", uri->query);
44 if (uri->fragment) printf("fragment: %s\n", uri->fragment);
45 if (uri->query_raw) printf("query_raw: %s\n", uri->query_raw);
46 if (uri->cleanup != 0) printf("cleanup\n");
48 xmlNormalizeURIPath(uri->path);
50 parsed = xmlSaveUri(uri);
55 xmlPrintURI(stdout, uri);
71 xmlFreeURI(uri);