http_header_line  129 ext/standard/http_fopen_wrapper.c 	char *http_header_line = NULL;
http_header_line  736 ext/standard/http_fopen_wrapper.c 	http_header_line = emalloc(HTTP_HEADER_BLOCK_SIZE);
http_header_line  740 ext/standard/http_fopen_wrapper.c 		if (php_stream_get_line(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE, &http_header_line_length) && *http_header_line != '\n' && *http_header_line != '\r') {
http_header_line  741 ext/standard/http_fopen_wrapper.c 			char *e = http_header_line + http_header_line_length - 1;
http_header_line  744 ext/standard/http_fopen_wrapper.c 					if (php_stream_get_line(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE, &http_header_line_length) == NULL) {
http_header_line  748 ext/standard/http_fopen_wrapper.c 					e = http_header_line + http_header_line_length - 1;
http_header_line  755 ext/standard/http_fopen_wrapper.c 			http_header_line_length = e - http_header_line + 1;
http_header_line  756 ext/standard/http_fopen_wrapper.c 			http_header_line[http_header_line_length] = '\0';
http_header_line  758 ext/standard/http_fopen_wrapper.c 			if (!strncasecmp(http_header_line, "Location: ", 10)) {
http_header_line  768 ext/standard/http_fopen_wrapper.c 				strlcpy(location, http_header_line + 10, sizeof(location));
http_header_line  769 ext/standard/http_fopen_wrapper.c 			} else if (!strncasecmp(http_header_line, "Content-Type: ", 14)) {
http_header_line  770 ext/standard/http_fopen_wrapper.c 				php_stream_notify_info(context, PHP_STREAM_NOTIFY_MIME_TYPE_IS, http_header_line + 14, 0);
http_header_line  771 ext/standard/http_fopen_wrapper.c 			} else if (!strncasecmp(http_header_line, "Content-Length: ", 16)) {
http_header_line  772 ext/standard/http_fopen_wrapper.c 				file_size = atoi(http_header_line + 16);
http_header_line  773 ext/standard/http_fopen_wrapper.c 				php_stream_notify_file_size(context, file_size, http_header_line, 0);
http_header_line  774 ext/standard/http_fopen_wrapper.c 			} else if (!strncasecmp(http_header_line, "Transfer-Encoding: chunked", sizeof("Transfer-Encoding: chunked"))) {
http_header_line  793 ext/standard/http_fopen_wrapper.c 			if (http_header_line[0] == '\0') {
http_header_line  798 ext/standard/http_fopen_wrapper.c 				ZVAL_STRINGL(&http_header, http_header_line, http_header_line_length);
http_header_line  900 ext/standard/http_fopen_wrapper.c 	if (http_header_line) {
http_header_line  901 ext/standard/http_fopen_wrapper.c 		efree(http_header_line);