/dports/www/squid/squid-4.15/src/tests/ |
H A D | testUriScheme.cc | 59 AnyP::UriScheme empty_scheme; in testAssignFromprotocol_t() 60 AnyP::UriScheme scheme; in testAssignFromprotocol_t() 64 AnyP::UriScheme https_scheme(AnyP::PROTO_HTTPS); in testAssignFromprotocol_t() 80 protocol = AnyP::UriScheme(AnyP::PROTO_HTTP); in testCastToprotocol_t() 90 AnyP::UriScheme lhs; in testDefaultConstructor() 91 AnyP::UriScheme rhs(AnyP::PROTO_NONE); in testDefaultConstructor() 101 AnyP::UriScheme lhs_none(AnyP::PROTO_NONE), rhs_none(AnyP::PROTO_NONE); in testConstructprotocol_t() 116 AnyP::UriScheme wais(AnyP::PROTO_WAIS); in testC_str() 128 CPPUNIT_ASSERT(AnyP::UriScheme() == AnyP::PROTO_NONE); in testEqualprotocol_t() 130 CPPUNIT_ASSERT(AnyP::PROTO_HTTP == AnyP::UriScheme(AnyP::PROTO_HTTP)); in testEqualprotocol_t() [all …]
|
H A D | testURL.cc | 28 AnyP::UriScheme::Init(); in setUp() 38 AnyP::UriScheme empty_scheme; in testConstructScheme() 42 AnyP::UriScheme ftp_scheme(AnyP::PROTO_FTP); in testConstructScheme() 55 AnyP::UriScheme aScheme; in testDefaultConstructor()
|
H A D | stub_libanyp.cc | 15 AnyP::Uri::Uri(AnyP::UriScheme const &) {STUB} in Uri()
|
H A D | testCacheManager.cc | 33 AnyP::UriScheme::Init(); in setUp()
|
/dports/www/squid/squid-4.15/src/anyp/ |
H A D | UriScheme.h | 24 class UriScheme 29 UriScheme() : theScheme_(AnyP::PROTO_NONE) {} in UriScheme() function 31 UriScheme(AnyP::ProtocolType const aScheme, const char *img = nullptr); 32 UriScheme(const AnyP::UriScheme &o) : theScheme_(o.theScheme_), image_(o.image_) {} in UriScheme() function 33 UriScheme(AnyP::UriScheme &&) = default; 34 ~UriScheme() {} in ~UriScheme() 36 AnyP::UriScheme& operator=(const AnyP::UriScheme &o) { 41 AnyP::UriScheme& operator=(AnyP::UriScheme &&) = default; 75 operator << (std::ostream &os, AnyP::UriScheme const &scheme)
|
H A D | UriScheme.cc | 14 AnyP::UriScheme::LowercaseSchemeNames AnyP::UriScheme::LowercaseSchemeNames_; 16 AnyP::UriScheme::UriScheme(AnyP::ProtocolType const aScheme, const char *img) : in UriScheme() function in AnyP::UriScheme 38 AnyP::UriScheme::Init() in Init() 52 AnyP::UriScheme::FindProtocolType(const SBuf &scheme) in FindProtocolType() 71 AnyP::UriScheme::defaultPort() const in defaultPort()
|
H A D | Uri.h | 37 Uri(AnyP::UriScheme const &aScheme); 68 AnyP::UriScheme const & getScheme() const {return scheme_;} in getScheme() 72 scheme_ = AnyP::UriScheme(p, str); in setScheme() 75 void setScheme(const AnyP::UriScheme &s) { in setScheme() 167 AnyP::UriScheme scheme_; 215 …lCanonicalCleanWithoutRequest(const SBuf &url, const HttpRequestMethod &, const AnyP::UriScheme &);
|
H A D | Makefile.am | 23 UriScheme.cc \ 24 UriScheme.h
|
H A D | Uri.cc | 186 static AnyP::UriScheme 207 const auto protocol = AnyP::UriScheme::FindProtocolType(str); in uriParseScheme() 209 return AnyP::UriScheme(protocol, str.c_str()); in uriParseScheme() 210 return AnyP::UriScheme(protocol, nullptr); in uriParseScheme() 284 AnyP::UriScheme scheme; in parse() 628 …leanWithoutRequest(const SBuf &url, const HttpRequestMethod &method, const AnyP::UriScheme &scheme) in urlCanonicalCleanWithoutRequest() 916 AnyP::Uri::Uri(AnyP::UriScheme const &aScheme) : in Uri()
|
H A D | forward.h | 21 class UriScheme; variable
|
H A D | Makefile.in | 166 am_libanyp_la_OBJECTS = PortCfg.lo ProtocolType.lo Uri.lo UriScheme.lo 189 ./$(DEPDIR)/UriScheme.Plo 1142 -rm -f ./$(DEPDIR)/UriScheme.Plo 1191 -rm -f ./$(DEPDIR)/UriScheme.Plo
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/src/System/Net/Managed/ |
H A D | HttpListenerRequest.Managed.cs | 150 return (scheme == UriScheme.Http || scheme == UriScheme.Https); in IsPredefinedScheme() 152 return (scheme == UriScheme.File || scheme == UriScheme.Ftp); in IsPredefinedScheme() 158 … return (scheme == UriScheme.News || scheme == UriScheme.NetPipe || scheme == UriScheme.NetTcp); in IsPredefinedScheme() 159 if (scheme == UriScheme.Nntp) in IsPredefinedScheme() 163 … if ((c == 'g' && scheme == UriScheme.Gopher) || (c == 'm' && scheme == UriScheme.Mailto)) in IsPredefinedScheme()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Mono.Security/ |
H A D | Uri.cs | 1134 private struct UriScheme struct in Mono.Security.Uri 1140 public UriScheme (string s, string d, int p) in UriScheme() method 1148 static UriScheme [] schemes = new UriScheme [] { 1149 new UriScheme (UriSchemeHttp, SchemeDelimiter, 80), 1150 new UriScheme (UriSchemeHttps, SchemeDelimiter, 443), 1151 new UriScheme (UriSchemeFtp, SchemeDelimiter, 21), 1152 new UriScheme (UriSchemeFile, SchemeDelimiter, -1), 1153 new UriScheme (UriSchemeMailto, ":", 25), 1154 new UriScheme (UriSchemeNews, ":", -1), 1155 new UriScheme (UriSchemeNntp, SchemeDelimiter, 119), [all …]
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/src/System/Net/Http/Managed/ |
H A D | HttpConnectionKey.cs | 16 uri.Scheme == UriScheme.Http ? false : in HttpConnectionKey() 17 uri.Scheme == UriScheme.Https ? true : in HttpConnectionKey()
|
H A D | HttpProxyConnectionHandler.cs | 57 if (proxyUri.Scheme != UriScheme.Http) in SendWithProxyAsync() 62 if (request.RequestUri.Scheme == UriScheme.Https) in SendWithProxyAsync()
|
H A D | HttpConnectionHandler.cs | 99 if (uri.Scheme == UriScheme.Https) in CreateConnection()
|
/dports/sysutils/zeitgeist/zeitgeist-1.0.3/test/direct/ |
H A D | mimetype-test.vala | 36 Test.add_func ("/UriScheme/basic", uri_scheme_basic_test); 37 Test.add_func ("/UriScheme/none", uri_scheme_none_test); 38 Test.add_func ("/UriScheme/register", uri_scheme_registration_test);
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Security/Authentication/ExtendedProtection/ |
H A D | ServiceNameCollection.cs | 247 …if (!Uri.TryCreate(UriScheme.Http + UriScheme.SchemeDelimiter + host, UriKind.Absolute, out constr… in NormalizeServiceName()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Primitives/src/System/Net/ |
H A D | CookieContainer.cs | 238 … uriSb.Append(cookie.Secure ? UriScheme.Https : UriScheme.Http).Append(UriScheme.SchemeDelimiter); in Add() 745 bool isSecure = (uri.Scheme == UriScheme.Https || uri.Scheme == UriScheme.Wss); in InternalGetCookies()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Net/ |
H A D | UriScheme.cs | 7 internal static class UriScheme class
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebSockets.Client/src/System/Net/WebSockets/ |
H A D | ClientWebSocket.cs | 119 if (uri.Scheme != UriScheme.Ws && uri.Scheme != UriScheme.Wss) in ConnectAsync()
|
/dports/sysutils/zeitgeist/zeitgeist-1.0.3/libzeitgeist/ |
H A D | mimetype.vala | 37 private static SList<UriScheme?> schemes; 54 private class UriScheme 59 public UriScheme (string uri_scheme, string manifestation_uri) 176 var scheme = new UriScheme (uri_scheme, manifestation_type); 195 foreach (unowned UriScheme scheme in schemes)
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/src/System/Net/ |
H A D | HttpListenerRequest.cs | 206 private string RequestScheme => IsSecureConnection ? UriScheme.Https : UriScheme.Http;
|
/dports/deskutils/xfce4-tumbler/tumbler-4.16.0/po/ |
H A D | ru.po | 62 "UriScheme/MimeType" 63 msgstr "Неверная секция «%s» в файле «%s»: несовпадение названия секции и UriScheme/MimeType"
|
H A D | ug.po | 59 "UriScheme/MimeType" 60 msgstr "ھۆججەت «%2$s» دىكى بۆلەك «%1$s» نىڭ فورماتى توغرا ئەمەس: بۆلەك ئاتى بىلەن UriScheme/MimeTyp…
|