SAPI_POST_BLOCK_SIZE  237 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  271 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  277 main/SAPI.c    			char buffer[SAPI_POST_BLOCK_SIZE];
SAPI_POST_BLOCK_SIZE  279 main/SAPI.c    			read_bytes = sapi_read_post_block(buffer, SAPI_POST_BLOCK_SIZE);
SAPI_POST_BLOCK_SIZE  295 main/SAPI.c    			if (read_bytes < SAPI_POST_BLOCK_SIZE) {
SAPI_POST_BLOCK_SIZE  509 main/SAPI.c    			char dummy[SAPI_POST_BLOCK_SIZE];
SAPI_POST_BLOCK_SIZE  513 main/SAPI.c    				read_bytes = sapi_read_post_block(dummy, SAPI_POST_BLOCK_SIZE);
SAPI_POST_BLOCK_SIZE  514 main/SAPI.c    			} while (SAPI_POST_BLOCK_SIZE == read_bytes);
SAPI_POST_BLOCK_SIZE  177 sapi/phpdbg/phpdbg_wait.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   57 sapi/phpdbg/phpdbg_webdata_transfer.c 		stream = php_stream_temp_create_ex(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE, PG(upload_tmp_dir));