Home
last modified time | relevance | path

Searched refs:read_post_bytes (Results 1 – 12 of 12) sorted by relevance

/PHP-5.6/sapi/continuity/
H A Dcapi.c68 int read_post_bytes; member
203 if (rc->read_post_bytes == -1) { in sapi_capi_read_post()
206 if (rc->read_post_bytes == 0) in sapi_capi_read_post()
208 max_read = MIN(count_bytes, (SG(request_info).content_length - rc->read_post_bytes)); in sapi_capi_read_post()
216 rc->read_post_bytes = total_read; in sapi_capi_read_post()
482 request_context->read_post_bytes = -1; in phpFservice()
/PHP-5.6/sapi/pi3web/
H A Dpi3web_sapi.c219 if ((DWORD)SG(read_post_bytes) < lpCB->cbAvailable) { in sapi_pi3web_read_post()
220 read_from_buf = MIN(lpCB->cbAvailable-SG(read_post_bytes), count_bytes); in sapi_pi3web_read_post()
221 memcpy(buffer, lpCB->lpbData+SG(read_post_bytes), read_from_buf); in sapi_pi3web_read_post()
225 && (SG(read_post_bytes)+read_from_buf) < lpCB->cbTotalBytes) { in sapi_pi3web_read_post()
228 …read_from_input = MIN(count_bytes-read_from_buf, lpCB->cbTotalBytes-SG(read_post_bytes)-read_from_… in sapi_pi3web_read_post()
/PHP-5.6/main/
H A Drfc1867.c265 SG(read_post_bytes) += actual_read; in fill_buffer()
879 event_formdata.post_bytes_processed = SG(read_post_bytes);
900 event_formdata.post_bytes_processed = SG(read_post_bytes);
978 event_file_start.post_bytes_processed = SG(read_post_bytes);
1028 event_file_data.post_bytes_processed = SG(read_post_bytes);
1092 event_file_end.post_bytes_processed = SG(read_post_bytes);
1293 event_end.post_bytes_processed = SG(read_post_bytes);
H A DSAPI.c263 SG(read_post_bytes) += read_bytes; in sapi_read_post_block()
301 if ((SG(post_max_size) > 0) && (SG(read_post_bytes) > SG(post_max_size))) { in SAPI_POST_READER_FUNC()
417 SG(read_post_bytes) = 0; in sapi_activate_headers_only()
462 SG(read_post_bytes) = 0; in sapi_activate()
H A DSAPI.h124 int64_t read_post_bytes; member
/PHP-5.6/sapi/isapi/
H A Dphp5isapi.c334 if ((DWORD) SG(read_post_bytes) < lpECB->cbAvailable) { in sapi_isapi_read_post()
335 read_from_buf = MIN(lpECB->cbAvailable-SG(read_post_bytes), count_bytes); in sapi_isapi_read_post()
336 memcpy(buffer, lpECB->lpbData+SG(read_post_bytes), read_from_buf); in sapi_isapi_read_post()
340 && (SG(read_post_bytes)+read_from_buf) < lpECB->cbTotalBytes) { in sapi_isapi_read_post()
343 …read_from_input = MIN(count_bytes-read_from_buf, lpECB->cbTotalBytes-SG(read_post_bytes)-read_from… in sapi_isapi_read_post()
/PHP-5.6/sapi/nsapi/
H A Dnsapi.c97 int read_post_bytes; member
602 count_bytes = MIN(count_bytes, SG(request_info).content_length-rc->read_post_bytes); in sapi_nsapi_read_post()
644 rc->read_post_bytes += bytes_read; in sapi_nsapi_read_post()
1017 request_context->read_post_bytes = 0; in php5_execute()
/PHP-5.6/ext/standard/
H A Dphp_fopen_wrapper.c83 if (!SG(post_read) && SG(read_post_bytes) < input->position + count) { in php_stream_input_read()
/PHP-5.6/sapi/apache/
H A Dmod_php5.c137 if (!SG(read_post_bytes) && !ap_should_client_block(r)) { in sapi_apache_read_post()
/PHP-5.6/sapi/cgi/
H A Dcgi_main.c516 count_bytes = MIN(count_bytes, SG(request_info).content_length - SG(read_post_bytes)); in sapi_cgi_read_post()
532 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_fcgi_read_post()
/PHP-5.6/sapi/apache_hooks/
H A Dmod_php5.c282 if (!SG(read_post_bytes) && !ap_should_client_block(r)) { in sapi_apache_read_post()
/PHP-5.6/sapi/fpm/fpm/
H A Dfpm_main.c503 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_cgi_read_post()

Completed in 62 milliseconds