Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 14 of 14) sorted by relevance

/curl/lib/
H A Dstrtok.c33 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 Dhttp_aws_sigv4.c214 char *sep = strchr(l->data, ':'); in make_headers() local
215 if(!sep) in make_headers()
216 sep = strchr(l->data, ';'); in make_headers()
217 if(!sep || (*sep == ':' && !*(sep + 1))) in make_headers()
219 for(ptr = sep + 1; ISSPACE(*ptr); ++ptr) in make_headers()
221 if(!*ptr && ptr != sep + 1) /* a value of whitespace only */ in make_headers()
226 dupdata[sep - l->data] = ':'; in make_headers()
H A Durlapi.c110 const char *sep; in find_host_sep() local
114 sep = strstr(url, "//"); in find_host_sep()
115 if(!sep) in find_host_sep()
116 sep = url; in find_host_sep()
118 sep += 2; in find_host_sep()
120 query = strchr(sep, '?'); in find_host_sep()
121 sep = strchr(sep, '/'); in find_host_sep()
123 if(!sep) in find_host_sep()
129 return sep < query ? sep : query; in find_host_sep()
353 if(sep && (sep < pathsep)) in concat_url()
[all …]
H A Dcookie.c538 bool sep = FALSE; in Curl_cookie_add() local
551 sep = TRUE; in Curl_cookie_add()
610 if(!sep) { in Curl_cookie_add()
650 else if(sep) in Curl_cookie_add()
1079 const char *sep; in Curl_cookie_add() local
1088 sep = strchr(clist->spath + 1, '/'); in Curl_cookie_add()
1090 if(sep) in Curl_cookie_add()
1091 cllen = sep - clist->spath; in Curl_cookie_add()
H A Dtelnet.c824 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 Dftp.c1964 char sep; in ftp_state_pasv_resp() local
1967 sep = ptr[0]; in ftp_state_pasv_resp()
1970 if((ptr[1] == sep) && (ptr[2] == sep) && ISDIGIT(ptr[3])) { in ftp_state_pasv_resp()
1973 if(*endp != sep) in ftp_state_pasv_resp()
/curl/src/
H A Dtool_formparse.c473 char sep; in get_param_part() local
495 sep = *p; in get_param_part()
519 sep = *p; in get_param_part()
534 sep = *p; in get_param_part()
557 sep = *p; in get_param_part()
584 sep = *p; in get_param_part()
606 sep = *p; in get_param_part()
614 sep = *p; in get_param_part()
620 sep = *p; in get_param_part()
762 if(sep < 0) in formparse()
[all …]
H A Dtool_paramhlp.c371 const char *sep = ","; in proto2num() local
404 for(token = strtok(buffer, sep); in proto2num()
406 token = strtok(NULL, sep)) { in proto2num()
/curl/.github/scripts/
H A Dbadwords.pl18 my ($bad, $sep, $better)=($1, $2, $3);
21 if($sep eq "=") {
/curl/tests/
H A Dtest1173.pl280 my $sep = $separators[$l];
281 if($sep ne ",") {
283 $sepline[$l], $sep;
288 my $sep = $separators[$#separators];
289 if($sep eq ",") {
H A Dservers.pm156 my $sep = '[:]';
159 $sep = '[;]';
161 my @paths=(split(m/$sep/, $ENV{'PATH'}), "/usr/sbin", "/usr/local/sbin",
/curl/scripts/
H A Dmanagen706 my $sep = " and";
708 $sep = ",";
710 $mstr .= sprintf "%s$l", $mstr?"$sep ":"";
/curl/lib/vtls/
H A Dschannel.c391 TCHAR *sep; in get_cert_location() local
395 sep = _tcschr(path, TEXT('\\')); in get_cert_location()
396 if(!sep) in get_cert_location()
399 store_name_len = sep - path; in get_cert_location()
423 store_path_start = sep + 1; in get_cert_location()
425 sep = _tcschr(store_path_start, TEXT('\\')); in get_cert_location()
426 if(!sep) in get_cert_location()
429 *thumbprint = sep + 1; in get_cert_location()
433 *sep = TEXT('\0'); in get_cert_location()
435 *sep = TEXT('\\'); in get_cert_location()
H A Dx509asn1.c494 const char *sep = ""; in GTime2str() local
539 sep = " "; in GTime2str()
549 sep, (int)tzl, tzp); in GTime2str()

Completed in 75 milliseconds