Searched defs:tmpfile (Results 1 - 2 of 2) sorted by relevance
/httpd/modules/proxy/ |
H A D | mod_proxy_http.c | 539 apr_file_t *tmpfile = NULL; local 578 if (tmpfile == NULL) { 591 status = apr_file_mktemp(&tmpfile, template, 0, p); 606 status = apr_file_write_full(tmpfile, data, bytes_read, &bytes_written); 610 if (apr_file_name_get(&tmpfile_name, tmpfile) != APR_SUCCESS) { 664 if (tmpfile) { 665 apr_brigade_insert_file(header_brigade, tmpfile, 0, fsize, p);
|
/httpd/modules/ssl/ |
H A D | mod_ssl_ct.c | 282 apr_file_t *tmpfile; local 306 rv = apr_file_open(&tmpfile, tmp_collated_fn, 319 rv = ctutil_file_write_uint16(s, tmpfile, overall_len); 321 apr_file_close(tmpfile); 328 apr_file_close(tmpfile); 336 apr_file_close(tmpfile); 393 rv = ctutil_file_write_uint16(s, tmpfile, (apr_uint16_t)scts_size); 398 rv = apr_file_write_full(tmpfile, scts, scts_size, &bytes_written); 420 rv = apr_file_seek(tmpfile, APR_SET, &offset); 422 rv = ctutil_file_write_uint16(s, tmpfile, overall_le [all...] |
Completed in 1114 milliseconds