• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching refs:authority

181  *    authority     = server | reg_name
370 } else if (uri->authority != NULL) {
383 p = uri->authority;
573 if (uri->authority != NULL) xmlFree(uri->authority);
574 uri->authority = NULL;
595 if (uri->authority != NULL) xmlFree(uri->authority);
987 if (uri->authority) {
989 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@");
1215 * of the authority part.
1274 if (uri->authority != NULL) xmlFree(uri->authority);
1275 uri->authority = NULL;
1368 if (uri->authority != NULL) xmlFree(uri->authority);
1369 uri->authority = NULL;
1525 * Parse the authority part of an URI.
1527 * authority = server | reg_name
1537 * The structure of a registry-based naming authority is specific
1539 * for an authority component.
1575 if (uri->authority != NULL) xmlFree(uri->authority);
1577 uri->authority = STRNDUP(*str, cur - *str);
1579 uri->authority = xmlURIUnescapeString(*str, cur - *str, NULL);
1594 * net_path = "//" authority [ abs_path ]
1679 * net_path = "//" authority [ abs_path ]
1918 * 2) If the path component is empty and the scheme, authority, and
1933 ((ref->authority == NULL) && (ref->server == NULL))) {
1936 if (bas->authority != NULL)
1937 res->authority = xmlMemStrdup(bas->authority);
1974 * 4) If the authority component is defined, then the reference is a
1976 * URI's authority is inherited from the base URI's authority
1978 * use an authority component.
1980 if ((ref->authority != NULL) || (ref->server != NULL)) {
1981 if (ref->authority != NULL)
1982 res->authority = xmlMemStrdup(ref->authority);
1993 if (bas->authority != NULL)
1994 res->authority = xmlMemStrdup(bas->authority);