content_length    140 ext/session/php_session.h 	size_t    content_length;
content_length   2920 ext/session/session.c 			progress->content_length = data->content_length;
content_length   2973 ext/session/session.c 					progress->update_step = progress->content_length * -PS(rfc1867_freq) / 100;
content_length   2982 ext/session/session.c 				add_assoc_long_ex(&progress->data, "content_length",  sizeof("content_length") - 1, progress->content_length);
content_length    264 main/SAPI.c    	if ((SG(post_max_size) > 0) && (SG(request_info).content_length > SG(post_max_size))) {
content_length    266 main/SAPI.c    					SG(request_info).content_length, SG(post_max_size));
content_length     85 main/SAPI.h    	zend_long content_length;
content_length    720 main/rfc1867.c 	if (SG(post_max_size) > 0 && SG(request_info).content_length > SG(post_max_size)) {
content_length    721 main/rfc1867.c 		sapi_module.sapi_error(E_WARNING, "POST Content-Length of " ZEND_LONG_FMT " bytes exceeds the limit of " ZEND_LONG_FMT " bytes", SG(request_info).content_length, SG(post_max_size));
content_length    786 main/rfc1867.c 		event_start.content_length = SG(request_info).content_length;
content_length     35 main/rfc1867.h 	size_t	content_length;
content_length    480 sapi/apache2handler/sapi_apache2.c 	char *content_length;
content_length    492 sapi/apache2handler/sapi_apache2.c 	content_length = (char *) apr_table_get(r->headers_in, "Content-Length");
content_length    493 sapi/apache2handler/sapi_apache2.c 	if (content_length) {
content_length    494 sapi/apache2handler/sapi_apache2.c 		ZEND_ATOL(SG(request_info).content_length, content_length);
content_length    496 sapi/apache2handler/sapi_apache2.c 		SG(request_info).content_length = 0;
content_length    480 sapi/cgi/cgi_main.c 	assert(SG(request_info).content_length >= SG(read_post_bytes));
content_length    482 sapi/cgi/cgi_main.c 	remaining_bytes = (size_t)(SG(request_info).content_length - SG(read_post_bytes));
content_length    507 sapi/cgi/cgi_main.c 	size_t remaining = SG(request_info).content_length - SG(read_post_bytes);
content_length   1138 sapi/cgi/cgi_main.c 	SG(request_info).content_length = 0;
content_length   1147 sapi/cgi/cgi_main.c 		char *content_length = CGI_GETENV("CONTENT_LENGTH");
content_length   1404 sapi/cgi/cgi_main.c 		SG(request_info).content_length = (content_length ? atol(content_length) : 0);
content_length   1629 sapi/cli/php_cli_server.c 		client->request.content = pemalloc(parser->content_length, 1);
content_length   1770 sapi/cli/php_cli_server.c 	request_info->content_length = client->request.content_len;
content_length    396 sapi/cli/php_http_parser.c         parser->content_length = -1;
content_length    425 sapi/cli/php_http_parser.c         parser->content_length = -1;
content_length    574 sapi/cli/php_http_parser.c         parser->content_length = -1;
content_length   1251 sapi/cli/php_http_parser.c             parser->content_length = ch - '0';
content_length   1300 sapi/cli/php_http_parser.c             parser->content_length *= 10;
content_length   1301 sapi/cli/php_http_parser.c             parser->content_length += ch - '0';
content_length   1424 sapi/cli/php_http_parser.c           if (parser->content_length == 0) {
content_length   1428 sapi/cli/php_http_parser.c           } else if (parser->content_length > 0) {
content_length   1449 sapi/cli/php_http_parser.c         to_read = MIN((size_t)(pe - p), (size_t)parser->content_length);
content_length   1453 sapi/cli/php_http_parser.c           parser->content_length -= to_read;
content_length   1454 sapi/cli/php_http_parser.c           if (parser->content_length == 0) {
content_length   1476 sapi/cli/php_http_parser.c         parser->content_length = c;
content_length   1500 sapi/cli/php_http_parser.c         parser->content_length *= 16;
content_length   1501 sapi/cli/php_http_parser.c         parser->content_length += c;
content_length   1521 sapi/cli/php_http_parser.c         if (parser->content_length == 0) {
content_length   1535 sapi/cli/php_http_parser.c         to_read = MIN((size_t)(pe - p), (size_t)(parser->content_length));
content_length   1542 sapi/cli/php_http_parser.c         if (to_read == parser->content_length) {
content_length   1546 sapi/cli/php_http_parser.c         parser->content_length -= to_read;
content_length    123 sapi/cli/php_http_parser.h   ssize_t  content_length;
content_length    250 sapi/fpm/fpm/fpm_log.c 						len2 = snprintf(b, FPM_LOG_BUFFER - len, "%zu", proc.content_length);
content_length    477 sapi/fpm/fpm/fpm_main.c 	size_t remaining = SG(request_info).content_length - SG(read_post_bytes);
content_length   1043 sapi/fpm/fpm/fpm_main.c 	SG(request_info).content_length = 0;
content_length   1052 sapi/fpm/fpm/fpm_main.c 		char *content_length = FCGI_GETENV(request, "CONTENT_LENGTH");
content_length   1389 sapi/fpm/fpm/fpm_main.c 		SG(request_info).content_length = (content_length ? atol(content_length) : 0);
content_length    191 sapi/fpm/fpm/fpm_php.c 	return SG(request_info).content_length;
content_length     96 sapi/fpm/fpm/fpm_request.c 	proc->content_length = 0;
content_length    112 sapi/fpm/fpm/fpm_request.c 	size_t content_length = fpm_php_content_length();
content_length    142 sapi/fpm/fpm/fpm_request.c 	proc->content_length = content_length;
content_length     37 sapi/fpm/fpm/fpm_scoreboard.h 	size_t content_length; /* used with POST only */
content_length    455 sapi/fpm/fpm/fpm_status.c 					proc.content_length,
content_length    469 sapi/litespeed/lsapi_main.c     SG(request_info).content_length = LSAPI_GetReqBodyLen();