Lines Matching refs:http_header_value
738 char *http_header_value; in php_stream_url_wrap_http_ex() local
759 http_header_value = memchr(http_header_line, ':', http_header_line_length); in php_stream_url_wrap_http_ex()
760 if (http_header_value) { in php_stream_url_wrap_http_ex()
761 http_header_value++; /* Skip ':' */ in php_stream_url_wrap_http_ex()
764 while (http_header_value < e in php_stream_url_wrap_http_ex()
765 && (*http_header_value == ' ' || *http_header_value == '\t')) { in php_stream_url_wrap_http_ex()
766 http_header_value++; in php_stream_url_wrap_http_ex()
771 http_header_value = e; in php_stream_url_wrap_http_ex()
785 strlcpy(location, http_header_value, sizeof(location)); in php_stream_url_wrap_http_ex()
787 php_stream_notify_info(context, PHP_STREAM_NOTIFY_MIME_TYPE_IS, http_header_value, 0); in php_stream_url_wrap_http_ex()
790 const char *ptr = http_header_value; in php_stream_url_wrap_http_ex()
804 && !strncasecmp(http_header_value, "Chunked", sizeof("Chunked")-1) in php_stream_url_wrap_http_ex()