Lines Matching refs:http_header_value
760 char *http_header_value; in php_stream_url_wrap_http_ex() local
790 http_header_value = memchr(http_header_line, ':', http_header_line_length); in php_stream_url_wrap_http_ex()
791 if (http_header_value) { in php_stream_url_wrap_http_ex()
792 http_header_value++; /* Skip ':' */ in php_stream_url_wrap_http_ex()
795 while (http_header_value < e in php_stream_url_wrap_http_ex()
796 && (*http_header_value == ' ' || *http_header_value == '\t')) { in php_stream_url_wrap_http_ex()
797 http_header_value++; in php_stream_url_wrap_http_ex()
802 http_header_value = e; in php_stream_url_wrap_http_ex()
816 strlcpy(location, http_header_value, sizeof(location)); in php_stream_url_wrap_http_ex()
818 php_stream_notify_info(context, PHP_STREAM_NOTIFY_MIME_TYPE_IS, http_header_value, 0); in php_stream_url_wrap_http_ex()
820 file_size = atoi(http_header_value); in php_stream_url_wrap_http_ex()
824 && !strncasecmp(http_header_value, "Chunked", sizeof("Chunked")-1) in php_stream_url_wrap_http_ex()