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.pl390 open(my $temp, ">", "$file1") || die "Failure writing diff file";
396 print $temp $l;
397 print $temp "\n";
399 close($temp) || die "Failure writing diff file";
401 open($temp, ">", "$file2") || die "Failure writing diff file";
407 print $temp $l;
408 print $temp "\n";
410 close($temp) || die "Failure writing diff file";
/curl/docs/libcurl/
H A Dcurl_slist_append.md44 struct curl_slist *temp = NULL;
51 temp = curl_slist_append(slist, "Accept:");
53 if(!temp) {
58 slist = temp;
/curl/lib/
H A Dtelnet.c938 unsigned char temp[2048]; in suboption() local
949 msnprintf((char *)temp, sizeof(temp), in suboption()
957 printsub(data, '>', &temp[2], len-2); in suboption()
961 msnprintf((char *)temp, sizeof(temp), in suboption()
969 printsub(data, '>', &temp[2], len-2); in suboption()
972 msnprintf((char *)temp, sizeof(temp), in suboption()
980 if(len + tmplen < (int)sizeof(temp)-6) { in suboption()
983 len += msnprintf((char *)&temp[len], sizeof(temp) - len, in suboption()
987 len += msnprintf((char *)&temp[len], sizeof(temp) - len, in suboption()
993 msnprintf((char *)&temp[len], sizeof(temp) - len, in suboption()
[all …]
H A Durl.c3273 if(temp->user) {
3277 existing->user = temp->user;
3279 temp->user = NULL;
3280 temp->passwd = NULL;
3295 temp->http_proxy.user = NULL;
3296 temp->socks_proxy.user = NULL;
3320 existing->host = temp->host;
3321 temp->host.rawalloc = NULL;
3322 temp->host.encalloc = NULL;
3330 temp->hostname_resolve = NULL;
[all …]
/curl/scripts/
H A Dchecksrc.pl588 my $temp = $cond;
589 $temp =~ s/\(//g; # remove open parens
590 my $openc = length($cond) - length($temp);
592 $temp = $cond;
593 $temp =~ s/\)//g; # remove close parens
594 my $closec = length($cond) - length($temp);
/curl/src/
H A Dtool_doswin.c682 struct curl_slist *temp; in GetLoadedModulePaths() local
695 temp = curl_slist_append(slist, path); in GetLoadedModulePaths()
696 if(!temp) in GetLoadedModulePaths()
698 slist = temp; in GetLoadedModulePaths()
/curl/.github/workflows/
H A Ddistcheck.yml62 ./configure --prefix=$HOME/temp --without-ssl --without-libpsl
68 bash scripts/installcheck.sh $HOME/temp
/curl/lib/vtls/
H A Dx509asn1.c668 struct dynbuf temp; in encodeDN() local
669 Curl_dyn_init(&temp, MAX_X509_STR); in encodeDN()
692 Curl_dyn_reset(&temp); in encodeDN()
693 result = ASN1tostr(&temp, &oid, 0); in encodeDN()
697 str = Curl_dyn_ptr(&temp); in encodeDN()
726 Curl_dyn_reset(&temp); in encodeDN()
731 Curl_dyn_free(&temp); in encodeDN()
H A Dopenssl.c4426 unsigned char *buff1 = NULL, *temp = NULL; local
4448 buff1 = temp = malloc(len1);
4453 len2 = i2d_X509_PUBKEY(X509_get_X509_PUBKEY(cert), &temp);
4460 if((len1 != len2) || !temp || ((temp - buff1) != len1))

Completed in 78 milliseconds