• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:bas

1947     xmlURIPtr bas = NULL;
1982 bas = xmlCreateURI();
1983 if (bas == NULL)
1985 ret = xmlParseURIReference(bas, (const char *) base);
1996 if (bas->fragment != NULL) {
1997 xmlFree(bas->fragment);
1998 bas->fragment = NULL;
2000 val = xmlSaveUri(bas);
2021 if (bas->scheme != NULL)
2022 res->scheme = xmlMemStrdup(bas->scheme);
2023 if (bas->authority != NULL)
2024 res->authority = xmlMemStrdup(bas->authority);
2025 else if (bas->server != NULL) {
2026 res->server = xmlMemStrdup(bas->server);
2027 if (bas->user != NULL)
2028 res->user = xmlMemStrdup(bas->user);
2029 res->port = bas->port;
2031 if (bas->path != NULL)
2032 res->path = xmlMemStrdup(bas->path);
2037 else if (bas->query_raw != NULL)
2038 res->query_raw = xmlMemStrdup(bas->query_raw);
2039 else if (bas->query != NULL)
2040 res->query = xmlMemStrdup(bas->query);
2056 if (bas->scheme != NULL)
2057 res->scheme = xmlMemStrdup(bas->scheme);
2086 if (bas->authority != NULL)
2087 res->authority = xmlMemStrdup(bas->authority);
2088 else if (bas->server != NULL) {
2089 res->server = xmlMemStrdup(bas->server);
2090 if (bas->user != NULL)
2091 res->user = xmlMemStrdup(bas->user);
2092 res->port = bas->port;
2116 if (bas->path != NULL)
2117 len += strlen(bas->path);
2133 if (bas->path != NULL) {
2134 while (bas->path[cur] != 0) {
2135 while ((bas->path[cur] != 0) && (bas->path[cur] != '/'))
2137 if (bas->path[cur] == 0)
2142 res->path[out] = bas->path[out];
2158 if ((out == 0) && (bas->server != NULL))
2183 if (bas != NULL)
2184 xmlFreeURI(bas);
2232 xmlURIPtr bas = NULL;
2260 bas = xmlCreateURI ();
2261 if (bas == NULL)
2264 ret = xmlParseURIReference (bas, (const char *) base);
2268 bas->path = (char *)xmlStrdup(base);
2275 ((bas->scheme == NULL) ||
2276 (xmlStrcmp ((xmlChar *)bas->scheme, (xmlChar *)ref->scheme)) ||
2277 (xmlStrcmp ((xmlChar *)bas->server, (xmlChar *)ref->server)))) {
2281 if (xmlStrEqual((xmlChar *)bas->path, (xmlChar *)ref->path)) {
2285 if (bas->path == NULL) {
2300 if (bas->path == NULL) {
2310 bptr = (xmlChar *)bas->path;
2425 if (bas != NULL)
2426 xmlFreeURI (bas);