Lines Matching refs:strncasecmp
157 …if (strncasecmp(resource->scheme, "http", sizeof("http")) && strncasecmp(resource->scheme, "https"… in php_stream_url_wrap_http_ex()
711 …&& ( tmp_line_len < sizeof("HTTP/1") - 1 || strncasecmp(tmp_line, "HTTP/1", sizeof("HTTP/1") - 1) ) in php_stream_url_wrap_http_ex()
779 if (!strncasecmp(http_header_line, "Location: ", 10)) { in php_stream_url_wrap_http_ex()
792 } else if (!strncasecmp(http_header_line, "Content-Type: ", 14)) { in php_stream_url_wrap_http_ex()
794 } else if (!strncasecmp(http_header_line, "Content-Length: ", 16)) { in php_stream_url_wrap_http_ex()
797 …} else if (!strncasecmp(http_header_line, "Transfer-Encoding: chunked", sizeof("Transfer-Encoding:… in php_stream_url_wrap_http_ex()
851 if (strlen(location)<8 || (strncasecmp(location, "http://", sizeof("http://")-1) && in php_stream_url_wrap_http_ex()
852 strncasecmp(location, "https://", sizeof("https://")-1) && in php_stream_url_wrap_http_ex()
853 strncasecmp(location, "ftp://", sizeof("ftp://")-1) && in php_stream_url_wrap_http_ex()
854 strncasecmp(location, "ftps://", sizeof("ftps://")-1))) in php_stream_url_wrap_http_ex()
912 …if (strncasecmp(new_path, "http://", sizeof("http://") - 1) || strncasecmp(new_path, "https://", s… in php_stream_url_wrap_http_ex()