Lines Matching refs:strncasecmp
690 …&& ( tmp_line_len < sizeof("HTTP/1") - 1 || strncasecmp(tmp_line, "HTTP/1", sizeof("HTTP/1") - 1) ) in php_stream_url_wrap_http_ex()
785 if (!strncasecmp(http_header_line, "Location:", sizeof("Location:")-1)) { in php_stream_url_wrap_http_ex()
797 } else if (!strncasecmp(http_header_line, "Content-Type:", sizeof("Content-Type:")-1)) { in php_stream_url_wrap_http_ex()
799 } else if (!strncasecmp(http_header_line, "Content-Length:", sizeof("Content-Length:")-1)) { in php_stream_url_wrap_http_ex()
814 !strncasecmp(http_header_line, "Transfer-Encoding:", sizeof("Transfer-Encoding:")-1) in php_stream_url_wrap_http_ex()
815 && !strncasecmp(http_header_value, "Chunked", sizeof("Chunked")-1) in php_stream_url_wrap_http_ex()
867 if (strlen(location)<8 || (strncasecmp(location, "http://", sizeof("http://")-1) && in php_stream_url_wrap_http_ex()
868 strncasecmp(location, "https://", sizeof("https://")-1) && in php_stream_url_wrap_http_ex()
869 strncasecmp(location, "ftp://", sizeof("ftp://")-1) && in php_stream_url_wrap_http_ex()
870 strncasecmp(location, "ftps://", sizeof("ftps://")-1))) in php_stream_url_wrap_http_ex()
930 …if (strncasecmp(new_path, "http://", sizeof("http://") - 1) || strncasecmp(new_path, "https://", s… in php_stream_url_wrap_http_ex()