/curl/tests/http/testenv/ |
H A D | client.py | 98 with open(self._stdoutfile, 'w') as cout, open(self._stderrfile, 'w') as cerr: 108 coutput = open(self._stdoutfile).readlines() 109 cerrput = open(self._stderrfile).readlines() 117 lines.extend(open(self._stdoutfile).readlines()) 119 lines.extend(open(self._stderrfile).readlines())
|
H A D | httpd.py | 146 with open(self._error_log, 'a') as fd: 148 with open(os.path.join(self._apache_dir, 'xxx'), 'a') as fd: 229 with open(os.path.join(self._docs_dir, 'data.json'), 'w') as fd: 234 with open(os.path.join(self._docs_dir, 'two/data.json'), 'w') as fd: 240 with open(self._basic_passwords, 'w') as fd: 243 with open(self._digest_passwords, 'w') as fd: 246 with open(os.path.join(self.docs_dir, 'restricted/digest/data.json'), 'w') as fd: 248 with open(self._conf_file, 'w') as fd: 382 with open(os.path.join(self._conf_dir, 'mime.types'), 'w') as fd:
|
H A D | caddy.py | 84 caddyerr = open(self._error_log, 'a') 150 with open(os.path.join(self._docs_dir, 'data.json'), 'w') as fd: 155 with open(self._conf_file, 'w') as fd:
|
/curl/tests/http/ |
H A D | test_07_upload.py | 68 respdata = open(curl.response_file(0)).readlines() 83 indata = open(fdata).readlines() 84 respdata = open(curl.response_file(0)).readlines() 136 indata = open(fdata).readlines() 155 indata = open(fdata).readlines() 409 indata = open(fdata).readlines() 410 respdata = open(curl.response_file(0)).readlines() 428 respdata = open(curl.response_file(0)).readlines() 476 indata = open(fdata).readlines() 494 indata = open(fdata).readlines() [all …]
|
H A D | test_31_vsftpds.py | 61 with open(fpath, 'w') as fd: 86 lines = open(os.path.join(curl.run_dir, 'download_#1.data')).readlines() 192 newlines = len(open(srcfile).readlines()) 236 destdata = open(dstfile).readlines() 246 diff = "".join(difflib.unified_diff(a=open(srcfile).readlines(), 247 b=open(dfile).readlines(), 259 diff = "".join(difflib.unified_diff(a=open(srcfile).readlines(), 260 b=open(dstfile).readlines(),
|
H A D | test_12_reuse.py | 89 with open(asfile, 'w') as fd: 111 with open(asfile, 'w') as fd: 133 with open(asfile, 'w') as fd:
|
H A D | test_30_vsftpd.py | 54 with open(fpath, 'w') as fd: 79 lines = open(os.path.join(curl.run_dir, 'download_#1.data')).readlines() 198 diff = "".join(difflib.unified_diff(a=open(srcfile).readlines(), 199 b=open(dfile).readlines(), 211 diff = "".join(difflib.unified_diff(a=open(srcfile).readlines(), 212 b=open(dstfile).readlines(),
|
H A D | test_08_caddy.py | 55 with open(fpath, 'w') as fd: 191 respdata = open(curl.response_file(i)).readlines() 210 respdata = open(curl.response_file(i)).readlines() 246 diff = "".join(difflib.unified_diff(a=open(srcfile).readlines(), 247 b=open(dfile).readlines(),
|
/curl/tests/ |
H A D | util.py | 46 with open(self.filename, "a") as fp: 78 with open(filename, "rb") as f:
|
/curl/tests/data/ |
H A D | test1683 | 42 %PERL -e 'for my $i ((1..100)) { my $filename = "%LOGDIR/exist%TESTNUMBER.$i"; open(FH, ">", $filen… 56 %PERL -e 'for my $i ((1..100)) { my $filename = "%LOGDIR/exist%TESTNUMBER.$i"; open(FH, "<", $filen…
|
H A D | test1163 | 29 FTP wildcard with pattern ending with an open-bracket
|
H A D | test586 | 38 FTP and open/close socket callbacks
|
H A D | test1027 | 36 %PERL -e 'open(IN,$ARGV[0]); my $lines=grep(/(Usage: curl )|(--version\s*Show version)/, <IN>); exi…
|
H A D | test341 | 39 Try to open a non existing file with --etag-compare should return an error
|
H A D | test1026 | 36 %PERL -e 'open(IN,$ARGV[0]); my $lines=grep(/(curl\s*-\s*transfer\sa\s*URL)|(AUTHORS)/, <IN>); exit…
|
H A D | test1460 | 43 # Warning: Failed to open the file log/name1460: File exists
|
/curl/lib/ |
H A D | fopen.c | 134 fd = open(tempstore, O_WRONLY | O_CREAT | O_EXCL, (mode_t)(0600|sb.st_mode)); in Curl_fopen() 136 fd = open(tempstore, O_WRONLY | O_CREAT | O_EXCL, 0600|sb.st_mode); in Curl_fopen()
|
/curl/docs/libcurl/opts/ |
H A D | CURLMOPT_MAX_TOTAL_CONNECTIONS.md | 17 CURLMOPT_MAX_TOTAL_CONNECTIONS - max simultaneously open connections 31 of simultaneously open connections in total using this multi handle. For each 32 new session, libcurl might open a new connection up to the limit set by
|
H A D | CURLOPT_OPENSOCKETDATA.md | 18 CURLOPT_OPENSOCKETDATA - pointer passed to open socket callback 31 argument in the open socket callback set with
|
H A D | CURLMOPT_MAX_HOST_CONNECTIONS.md | 30 Pass a long to indicate **max**, the maximum amount of simultaneously open 33 might open a new connection up to the limit set by
|
/curl/tests/server/ |
H A D | rtspd.c | 294 req->open = FALSE; /* closes connection */ in ProcessRequest() 313 req->open = FALSE; /* closes connection */ in ProcessRequest() 329 req->open = TRUE; in ProcessRequest() 483 req->open = FALSE; /* closes connection */ in ProcessRequest() 556 req->open && in ProcessRequest() 675 req->open = TRUE; in get_request() 808 req->open = FALSE; in send_doc() 1042 req->open = persistent; in send_doc() 1346 if(!req.open) { in main() 1351 if(req.open) in main() [all …]
|
/curl/packages/vms/ |
H A D | generate_vax_transfer.com | 53 $ open/read cver [-.-.include.curl]curlver.h 68 $ open/read aopt gnv_libcurl_symbols.opt 73 $ open/append vopt gnv_libcurl_xfer.mar_exact 135 $ open/read aopt gnv_libcurl_symbols.opt 192 $ open/append lco gnv_libcurl_xfer.opt 221 ; The second is the exact case for compatibility with open source C programs
|
H A D | build_curl-config_script.com | 64 $ open/read/error=version_loop_end vhf [--.include.curl]curlver.h 108 $ open/read/error=read_loop_end c_c_in sys$disk:[--]curl-config.in 110 $ open/append c_c_out sys$disk:[--]curl-config.
|
H A D | build_libcurl_pc.com | 76 $ open/read vf [--.src]tool_version.h 94 $ open/append pco [--]libcurl.pc 95 $ open/read pci 'pc_file_in'
|
H A D | build_gnv_curl_pcsi_text.com | 110 $ open/append ptxt 'base_file'.pcsi$text 116 $ open/read rf 'readme_file' 142 $ open/read cf 'copying_file'
|