Searched refs:temp (Results 1 – 10 of 10) sorted by relevance
/curl/tests/ |
H A D | getpart.pm | 334 open(my $temp, ">", "$filename") || die "Failure writing file"; 335 binmode($temp,":raw"); # Cygwin fix by Kevin Roth 337 print $temp $_; 339 close($temp) || die "Failure writing file"; 349 if (open(my $temp, "<", "$filename")) { 350 while(<$temp>) { 353 close($temp);
|
H A D | runtests.pl | 393 open(my $temp, ">", "$file1") || die "Failure writing diff file"; 399 print $temp $l; 400 print $temp "\n"; 402 close($temp) || die "Failure writing diff file"; 404 open($temp, ">", "$file2") || die "Failure writing diff file"; 410 print $temp $l; 411 print $temp "\n"; 413 close($temp) || die "Failure writing diff file";
|
/curl/docs/libcurl/ |
H A D | curl_slist_append.md | 47 struct curl_slist *temp = NULL; 54 temp = curl_slist_append(slist, "Accept:"); 56 if(!temp) { 61 slist = temp;
|
/curl/lib/ |
H A D | telnet.c | 932 unsigned char temp[2048]; in suboption() local 943 msnprintf((char *)temp, sizeof(temp), in suboption() 951 printsub(data, '>', &temp[2], len-2); in suboption() 955 msnprintf((char *)temp, sizeof(temp), in suboption() 963 printsub(data, '>', &temp[2], len-2); in suboption() 966 msnprintf((char *)temp, sizeof(temp), in suboption() 974 if(len + tmplen < (int)sizeof(temp)-6) { in suboption() 977 len += msnprintf((char *)&temp[len], sizeof(temp) - len, in suboption() 981 len += msnprintf((char *)&temp[len], sizeof(temp) - len, in suboption() 987 msnprintf((char *)&temp[len], sizeof(temp) - len, in suboption() [all …]
|
H A D | url.c | 3275 if(temp->user) { 3279 existing->user = temp->user; 3281 temp->user = NULL; 3282 temp->passwd = NULL; 3297 temp->http_proxy.user = NULL; 3298 temp->socks_proxy.user = NULL; 3322 existing->host = temp->host; 3323 temp->host.rawalloc = NULL; 3324 temp->host.encalloc = NULL; 3332 temp->hostname_resolve = NULL; [all …]
|
/curl/scripts/ |
H A D | checksrc.pl | 604 my $temp = $cond; 605 $temp =~ s/\(//g; # remove open parens 606 my $openc = length($cond) - length($temp); 608 $temp = $cond; 609 $temp =~ s/\)//g; # remove close parens 610 my $closec = length($cond) - length($temp);
|
/curl/src/ |
H A D | tool_doswin.c | 637 struct curl_slist *temp; in GetLoadedModulePaths() local 650 temp = curl_slist_append(slist, path); in GetLoadedModulePaths() 651 if(!temp) in GetLoadedModulePaths() 653 slist = temp; in GetLoadedModulePaths()
|
/curl/lib/vtls/ |
H A D | x509asn1.c | 683 struct dynbuf temp; in encodeDN() local 684 Curl_dyn_init(&temp, CURL_X509_STR_MAX); in encodeDN() 707 Curl_dyn_reset(&temp); in encodeDN() 708 result = ASN1tostr(&temp, &oid, 0); in encodeDN() 712 str = Curl_dyn_ptr(&temp); in encodeDN() 746 Curl_dyn_reset(&temp); in encodeDN() 751 Curl_dyn_free(&temp); in encodeDN()
|
H A D | openssl.c | 4399 unsigned char *buff1 = NULL, *temp = NULL; local 4421 buff1 = temp = malloc(len1); 4426 len2 = i2d_X509_PUBKEY(X509_get_X509_PUBKEY(cert), &temp); 4433 if((len1 != len2) || !temp || ((temp - buff1) != len1))
|
/curl/.github/workflows/ |
H A D | distcheck.yml | 55 ./configure --prefix=$HOME/temp --without-ssl --without-libpsl 61 bash scripts/installcheck.sh $HOME/temp
|
Completed in 74 milliseconds