SAPI_POST_BLOCK_SIZE  234 ext/standard/php_fopen_wrapper.c 			input->body = php_stream_temp_create_ex(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE, PG(upload_tmp_dir));
SAPI_POST_BLOCK_SIZE  282 main/SAPI.c    	SG(request_info).request_body = php_stream_temp_create_ex(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE, PG(upload_tmp_dir));
SAPI_POST_BLOCK_SIZE  288 main/SAPI.c    			char buffer[SAPI_POST_BLOCK_SIZE];
SAPI_POST_BLOCK_SIZE  290 main/SAPI.c    			read_bytes = sapi_read_post_block(buffer, SAPI_POST_BLOCK_SIZE TSRMLS_CC);
SAPI_POST_BLOCK_SIZE  301 main/SAPI.c    			if (read_bytes < SAPI_POST_BLOCK_SIZE) {
SAPI_POST_BLOCK_SIZE  516 main/SAPI.c    			char dummy[SAPI_POST_BLOCK_SIZE];
SAPI_POST_BLOCK_SIZE  520 main/SAPI.c    				read_bytes = sapi_read_post_block(dummy, SAPI_POST_BLOCK_SIZE TSRMLS_CC);
SAPI_POST_BLOCK_SIZE  521 main/SAPI.c    			} while (SAPI_POST_BLOCK_SIZE == read_bytes);