http_header_line  129 ext/standard/http_fopen_wrapper.c 	char *http_header_line = NULL;
http_header_line  739 ext/standard/http_fopen_wrapper.c 	http_header_line = emalloc(HTTP_HEADER_BLOCK_SIZE);
http_header_line  743 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  744 ext/standard/http_fopen_wrapper.c 			char *e = http_header_line + http_header_line_length - 1;
http_header_line  747 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  751 ext/standard/http_fopen_wrapper.c 					e = http_header_line + http_header_line_length - 1;
http_header_line  758 ext/standard/http_fopen_wrapper.c 			http_header_line_length = e - http_header_line + 1;
http_header_line  759 ext/standard/http_fopen_wrapper.c 			http_header_line[http_header_line_length] = '\0';
http_header_line  761 ext/standard/http_fopen_wrapper.c 			if (!strncasecmp(http_header_line, "Location: ", 10)) {
http_header_line  773 ext/standard/http_fopen_wrapper.c 				strlcpy(location, http_header_line + 10, sizeof(location));
http_header_line  774 ext/standard/http_fopen_wrapper.c 			} else if (!strncasecmp(http_header_line, "Content-Type: ", 14)) {
http_header_line  775 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  776 ext/standard/http_fopen_wrapper.c 			} else if (!strncasecmp(http_header_line, "Content-Length: ", 16)) {
http_header_line  777 ext/standard/http_fopen_wrapper.c 				file_size = atoi(http_header_line + 16);
http_header_line  778 ext/standard/http_fopen_wrapper.c 				php_stream_notify_file_size(context, file_size, http_header_line, 0);
http_header_line  779 ext/standard/http_fopen_wrapper.c 			} else if (!strncasecmp(http_header_line, "Transfer-Encoding: chunked", sizeof("Transfer-Encoding: chunked"))) {
http_header_line  800 ext/standard/http_fopen_wrapper.c 			if (http_header_line[0] == '\0') {
http_header_line  807 ext/standard/http_fopen_wrapper.c 				ZVAL_STRINGL(http_header, http_header_line, http_header_line_length, 1);
http_header_line  909 ext/standard/http_fopen_wrapper.c 	if (http_header_line) {
http_header_line  910 ext/standard/http_fopen_wrapper.c 		efree(http_header_line);