read_post_bytes    83 ext/standard/php_fopen_wrapper.c 	if (!SG(post_read) && SG(read_post_bytes) < (int64_t)(input->position + count)) {
read_post_bytes   252 main/SAPI.c    		SG(read_post_bytes) += read_bytes;
read_post_bytes   290 main/SAPI.c    			if ((SG(post_max_size) > 0) && (SG(read_post_bytes) > SG(post_max_size))) {
read_post_bytes   406 main/SAPI.c    	SG(read_post_bytes) = 0;
read_post_bytes   450 main/SAPI.c    	SG(read_post_bytes) = 0;
read_post_bytes   125 main/SAPI.h    	int64_t read_post_bytes;
read_post_bytes   270 main/rfc1867.c 			SG(read_post_bytes) += actual_read;
read_post_bytes   884 main/rfc1867.c 						event_formdata.post_bytes_processed = SG(read_post_bytes);
read_post_bytes   905 main/rfc1867.c 						event_formdata.post_bytes_processed = SG(read_post_bytes);
read_post_bytes   983 main/rfc1867.c 				event_file_start.post_bytes_processed = SG(read_post_bytes);
read_post_bytes  1033 main/rfc1867.c 					event_file_data.post_bytes_processed = SG(read_post_bytes);
read_post_bytes  1101 main/rfc1867.c 				event_file_end.post_bytes_processed = SG(read_post_bytes);
read_post_bytes  1310 main/rfc1867.c 		event_end.post_bytes_processed = SG(read_post_bytes);
read_post_bytes   480 sapi/cgi/cgi_main.c 	assert(SG(request_info).content_length >= SG(read_post_bytes));
read_post_bytes   482 sapi/cgi/cgi_main.c 	remaining_bytes = (size_t)(SG(request_info).content_length - SG(read_post_bytes));
read_post_bytes   507 sapi/cgi/cgi_main.c 	size_t remaining = SG(request_info).content_length - SG(read_post_bytes);
read_post_bytes   477 sapi/fpm/fpm/fpm_main.c 	size_t remaining = SG(request_info).content_length - SG(read_post_bytes);