Searched defs:bytes_read (Results 1 - 8 of 8) sorted by relevance
/httpd/modules/apreq/ |
H A D | apreq_private_apache2.h | 29 apr_uint64_t bytes_read; /* Total bytes read into this filter. */ member in struct:filter_ctx
|
/httpd/server/ |
H A D | apreq_module_custom.c | 36 apr_uint64_t bytes_read; member in struct:custom_handle 56 req->bytes_read += bytes; 58 if (req->bytes_read > req->read_limit) { 76 req->bytes_read += len; 78 if (req->bytes_read > req->read_limit) { 268 req->bytes_read = 0;
|
H A D | apreq_module_cgi.c | 68 apr_uint64_t bytes_read; member in struct:cgi_handle 443 req->bytes_read += bytes; 445 if (req->bytes_read > req->read_limit) { 450 req->bytes_read, req->read_limit); 469 req->bytes_read += len; 471 if (req->bytes_read > req->read_limit) { 476 req->bytes_read, req->read_limit); 883 if (req->read_limit > bytes && req->bytes_read < bytes) { 910 if (*temp_dir == NULL && req->bytes_read == 0) {
|
H A D | log.c | 1579 apr_size_t bytes_read; local 1599 rv = apr_file_read_full(pid_file, buf, BUFFER_SIZE - 1, &bytes_read); 1606 if (bytes_read == 0 || bytes_read == BUFFER_SIZE - 1 || !apr_isdigit(*buf)) { 1610 buf[bytes_read] = '\0';
|
/httpd/modules/filters/ |
H A D | sed0.c | 720 apr_size_t bytes_read; local 783 bytes_read = 1; 785 while (apr_file_read(fin, &t, &bytes_read) != APR_SUCCESS) { 797 bytes_read = 1; 798 if (apr_file_read(fin, &t, &bytes_read) != APR_SUCCESS) { 804 bytes_read = 1;
|
H A D | mod_include.c | 180 apr_size_t bytes_read; member in struct:ssi_internal_ctx 3398 intern->bytes_read = 0; 3457 intern->bytes_read > AP_MIN_BYTES_TO_WRITE) { 3468 intern->bytes_read = 0; 3474 if (intern->bytes_read > 0) { 3491 intern->bytes_read += len;
|
/httpd/modules/generators/ |
H A D | mod_cgid.c | 352 size_t bytes_read = 0; local 356 rc = read(fd, buf + bytes_read, buf_size - bytes_read); 364 bytes_read += rc; 366 } while (bytes_read < buf_size);
|
/httpd/modules/proxy/ |
H A D | mod_proxy_http.c | 603 apr_size_t bytes_read, bytes_written; local 605 apr_bucket_read(e, &data, &bytes_read, APR_BLOCK_READ); 606 status = apr_file_write_full(tmpfile, data, bytes_read, &bytes_written); 618 AP_DEBUG_ASSERT(bytes_read == bytes_written); 746 apr_off_t bytes_read = 0; local 825 MAX_MEM_SPOOL - bytes_read); 844 bytes_read += bytes; 870 } while ((bytes_read < MAX_MEM_SPOOL - 80) 918 if (*old_cl_val || *old_te_val || bytes_read) { 919 *old_cl_val = apr_off_t_toa(r->pool, bytes_read); [all...] |
Completed in 1528 milliseconds