Home | History | Annotate | Download | only in libxml2

Lines Matching defs:port

317  * Parse a port  part and fills in the appropriate fields
320 * port = *DIGIT
331 uri->port = 0;
334 uri->port = uri->port * 10 + (*cur - '0');
502 * authority = [ userinfo "@" ] host [ ":" port ]
763 uri->port = -1;
1111 if ((uri->server != NULL) || (uri->port == -1)) {
1158 if (uri->port > 0) {
1164 len += snprintf((char *) &ret[len], max - len, ":%d", uri->port);
1809 if (uri->port) {
1810 xmlChar port[10];
1812 snprintf((char *) port, 10, "%d", uri->port);
1814 ret = xmlStrcat(ret, port);
1967 res->port = bas->port;
2018 res->port = ref->port;
2030 res->port = bas->port;