Home
last modified time | relevance | path

Searched refs:portp (Results 1 – 5 of 5) sorted by relevance

/external/fio/engines/
Drdma.c1162 char *modep, *portp; in compat_options() local
1168 portp = strchr(filename, '/'); in compat_options()
1169 if (portp == NULL) in compat_options()
1172 *portp = '\0'; in compat_options()
1173 portp++; in compat_options()
1175 o->port = strtol(portp, NULL, 10); in compat_options()
1179 modep = strchr(portp, '/'); in compat_options()
/external/curl/tests/server/
Drtspd.c559 char *portp = strchr(doc, ':'); in ProcessRequest() local
560 if(portp && (*(portp + 1) != '\0') && ISDIGIT(*(portp + 1))) in ProcessRequest()
561 req->testno = strtol(portp + 1, NULL, 10); in ProcessRequest()
Dsws.c557 char *portp = NULL; in ProcessRequest() local
587 portp = p + 1; in ProcessRequest()
592 portp = strchr(doc, ':'); in ProcessRequest()
594 if(portp && (*(portp + 1) != '\0') && ISDIGIT(*(portp + 1))) { in ProcessRequest()
595 unsigned long ulnum = strtoul(portp + 1, NULL, 10); in ProcessRequest()
/external/libxml2/
Dnanoftp.c1379 unsigned char ad[6], *adp, *portp; in xmlNanoFTPGetConnection() local
1503 portp = (unsigned char *) &((struct sockaddr_in6 *)&dataAddr)->sin6_port; in xmlNanoFTPGetConnection()
1504 snprintf (buf, sizeof(buf), "EPRT |2|%s|%s|\r\n", adp, portp); in xmlNanoFTPGetConnection()
1509 portp = (unsigned char *) &((struct sockaddr_in *)&dataAddr)->sin_port; in xmlNanoFTPGetConnection()
1512 portp[0] & 0xff, portp[1] & 0xff); in xmlNanoFTPGetConnection()
/external/fio/
Dserver.c2276 char *portp; in fio_server_parse_string() local
2318 portp = strchr(host, ','); in fio_server_parse_string()
2319 if (portp) { in fio_server_parse_string()
2320 *portp = '\0'; in fio_server_parse_string()
2321 portp++; in fio_server_parse_string()
2322 lport = atoi(portp); in fio_server_parse_string()