Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 10 of 10) sorted by relevance

/curl/tests/
H A Dgetpart.pm334 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 Druntests.pl393 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 Dcurl_slist_append.md47 struct curl_slist *temp = NULL;
54 temp = curl_slist_append(slist, "Accept:");
56 if(!temp) {
61 slist = temp;
/curl/lib/
H A Dtelnet.c932 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 Durl.c3275 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 Dchecksrc.pl604 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 Dtool_doswin.c637 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 Dx509asn1.c683 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 Dopenssl.c4399 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 Ddistcheck.yml55 ./configure --prefix=$HOME/temp --without-ssl --without-libpsl
61 bash scripts/installcheck.sh $HOME/temp

Completed in 46 milliseconds