Searched refs:sep (Results 1 – 14 of 14) sorted by relevance
/curl/lib/ |
H A D | strtok.c | 33 Curl_strtok_r(char *ptr, const char *sep, char **end) in Curl_strtok_r() argument 40 while(*ptr && strchr(sep, *ptr)) in Curl_strtok_r() 52 while(**end && !strchr(sep, **end)) in Curl_strtok_r()
|
H A D | http_aws_sigv4.c | 232 char *sep = strchr(l->data, ':'); in make_headers() local 233 if(!sep) in make_headers() 234 sep = strchr(l->data, ';'); in make_headers() 235 if(!sep || (*sep == ':' && !*(sep + 1))) in make_headers() 237 for(ptr = sep + 1; ISSPACE(*ptr); ++ptr) in make_headers() 239 if(!*ptr && ptr != sep + 1) /* a value of whitespace only */ in make_headers() 244 dupdata[sep - l->data] = ':'; in make_headers()
|
H A D | urlapi.c | 109 const char *sep; in find_host_sep() local 113 sep = strstr(url, "//"); in find_host_sep() 114 if(!sep) in find_host_sep() 115 sep = url; in find_host_sep() 117 sep += 2; in find_host_sep() 119 query = strchr(sep, '?'); in find_host_sep() 120 sep = strchr(sep, '/'); in find_host_sep() 122 if(!sep) in find_host_sep() 128 return sep < query ? sep : query; in find_host_sep() 352 if(sep && (sep < pathsep)) in concat_url() [all …]
|
H A D | cookie.c | 503 bool sep = FALSE; in parse_cookie_header() local 516 sep = TRUE; in parse_cookie_header() 573 if(!sep) in parse_cookie_header() 609 else if(sep) in parse_cookie_header() 1010 const char *sep; in replace_existing() local 1019 sep = strchr(clist->spath + 1, '/'); in replace_existing() 1021 if(sep) in replace_existing() 1022 cllen = sep - clist->spath; in replace_existing()
|
H A D | telnet.c | 824 char *sep = strchr(option, '='); in check_telnet_options() local 825 if(sep) { in check_telnet_options() 826 olen = sep - option; in check_telnet_options() 827 arg = ++sep; in check_telnet_options()
|
H A D | ftp.c | 1798 char sep; in ftp_state_pasv_resp() local 1801 sep = ptr[0]; in ftp_state_pasv_resp() 1804 if((ptr[1] == sep) && (ptr[2] == sep) && ISDIGIT(ptr[3])) { in ftp_state_pasv_resp() 1807 if(*endp != sep) in ftp_state_pasv_resp()
|
/curl/src/ |
H A D | tool_formparse.c | 471 char sep; in get_param_part() local 493 sep = *p; in get_param_part() 517 sep = *p; in get_param_part() 532 sep = *p; in get_param_part() 555 sep = *p; in get_param_part() 582 sep = *p; in get_param_part() 604 sep = *p; in get_param_part() 612 sep = *p; in get_param_part() 618 sep = *p; in get_param_part() 760 if(sep < 0) in formparse() [all …]
|
H A D | tool_paramhlp.c | 367 const char *sep = ","; in proto2num() local 400 for(token = strtok(buffer, sep); in proto2num() 402 token = strtok(NULL, sep)) { in proto2num()
|
/curl/.github/scripts/ |
H A D | badwords.pl | 18 my ($bad, $sep, $better)=($1, $2, $3); 21 if($sep eq "=") {
|
/curl/tests/ |
H A D | test1173.pl | 280 my $sep = $separators[$l]; 281 if($sep ne ",") { 283 $sepline[$l], $sep; 288 my $sep = $separators[$#separators]; 289 if($sep eq ",") {
|
H A D | runtests.pl | 3052 my $sep = " "; 3054 $msg .= $sep . $runnersrunning{$rid} . "[$rid]"; 3055 $sep = ", " 3172 my $sep = ($first == 1) ? " " : ", "; 3173 logmsg "$sep$k";
|
/curl/scripts/ |
H A D | managen | 763 my $sep = " and"; 765 $sep = ","; 767 $mstr .= sprintf "%s$l", $mstr?"$sep ":""; 786 my $sep = ", "; 788 $sep = " and "; 790 $mstr .= sprintf "%s$l", $mstr?$sep:"";
|
/curl/lib/vtls/ |
H A D | x509asn1.c | 488 const char *sep = ""; in GTime2str() local 537 sep = " "; in GTime2str() 542 sep = " UTC"; in GTime2str() 546 sep = " "; in GTime2str() 555 sep, (int)tzl, tzp); in GTime2str()
|
H A D | schannel.c | 402 TCHAR *sep; in get_cert_location() local 406 sep = _tcschr(path, TEXT('\\')); in get_cert_location() 407 if(!sep) in get_cert_location() 410 store_name_len = sep - path; in get_cert_location() 434 store_path_start = sep + 1; in get_cert_location() 436 sep = _tcschr(store_path_start, TEXT('\\')); in get_cert_location() 437 if(!sep) in get_cert_location() 440 *thumbprint = sep + 1; in get_cert_location() 444 *sep = TEXT('\0'); in get_cert_location() 446 *sep = TEXT('\\'); in get_cert_location()
|
Completed in 112 milliseconds