/external/jetty/src/java/org/eclipse/jetty/http/ |
HttpSchemes.java | 33 HTTPS="https"; 37 HTTPS_BUFFER = new ByteArrayBuffer(HTTPS);
|
EncodedHttpURI.java | 59 return HttpSchemes.HTTPS;
|
HttpURI.java | 289 // short cut for http and https 524 return HttpSchemes.HTTPS;
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
URIUtil.java | 46 public static final String HTTPS="https"; 47 public static final String HTTPS_COLON="https:";
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_wsgiref.py | 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on") 232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1") 233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes") 234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo") 235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo") 236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on") 240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http" [all...] |
test_httplib.py | 497 # XXX Here should be tests for HTTPS, there isn't any right now! 505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available') 519 http = httplib.HTTPS(hp)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_wsgiref.py | 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on") 232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1") 233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes") 234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo") 235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo") 236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on") 240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http" [all...] |
test_httplib.py | 497 # XXX Here should be tests for HTTPS, there isn't any right now! 505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available') 519 http = httplib.HTTPS(hp)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_wsgiref.py | 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on") 232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1") 233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes") 234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo") 235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo") 236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on") 240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http" [all...] |
test_httplib.py | 497 # XXX Here should be tests for HTTPS, there isn't any right now! 505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available') 519 http = httplib.HTTPS(hp)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_wsgiref.py | 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on") 232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1") 233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes") 234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo") 235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo") 236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on") 240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http" [all...] |
/external/jetty/src/java/org/eclipse/jetty/client/ |
RedirectListener.java | 127 boolean isHttps = HttpSchemes.HTTPS.equals(String.valueOf(_exchange.getScheme()));
|
AbstractHttpConnection.java | 198 absoluteURI.append(secure ? HttpSchemes.HTTPS : HttpSchemes.HTTP);
|
HttpExchange.java | 482 else if (HttpSchemes.HTTPS.equalsIgnoreCase(scheme)) 619 port = "https".equalsIgnoreCase(scheme)?443:80; [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ |
AbstractConnector.java | 68 private String _integralScheme = HttpSchemes.HTTPS; 70 private String _confidentialScheme = HttpSchemes.HTTPS; 428 request.setScheme(HttpSchemes.HTTPS); 566 return _forwarded && request.getScheme().equalsIgnoreCase(HttpSchemes.HTTPS); [all...] |
Response.java | 203 port = HttpSchemes.HTTPS.equalsIgnoreCase(uri.getScheme())?443:80; 272 ((HttpSchemes.HTTPS.equalsIgnoreCase(uri.getScheme()) || HttpSchemes.HTTP.equalsIgnoreCase(uri.getScheme())) && uri.getPath()==null?"/":"") + //if no path, insert the root path 278 ((HttpSchemes.HTTPS.equalsIgnoreCase(uri.getScheme()) || HttpSchemes.HTTP.equalsIgnoreCase(uri.getScheme())) && uri.getPath()==null?"/":"")+ //if no path so insert the root path [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ssl/ |
SslCertificates.java | 107 request.setScheme(HttpSchemes.HTTPS);
|
SslSelectChannelConnector.java | 105 request.setScheme(HttpSchemes.HTTPS);
|
SslSocketConnector.java | 148 request.setScheme(HttpSchemes.HTTPS);
|
/external/jetty/src/java/org/eclipse/jetty/security/ |
ConstraintSecurityHandler.java | 710 String url = (HttpSchemes.HTTPS.equalsIgnoreCase(scheme) && port==443) 711 ? "https://"+request.getServerName()+request.getRequestURI() 733 String url = (HttpSchemes.HTTPS.equalsIgnoreCase(scheme) && port==443) 734 ? "https://"+request.getServerName()+request.getRequestURI()
|
/development/apps/Development/src/com/android/development/ |
Connectivity.java | 538 onHttpRequest(HTTPS); 697 private final static int HTTPS = 2; 764 final URL httpsUrl = new URL("https", fixedHost, path); 778 case HTTPS:
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ |
libhttplib2.tex | 63 \item[HTTP and HTTPS] HTTPS support is only available if the socket module was compiled with SSL support. 65 \item[Authentication] The following three types of HTTP Authentication are supported. These can be used over both HTTP and HTTPS. 219 The \var{uri} is the URI of the HTTP resource and can begin with either \code{http} or \code{https}. The value of \var{uri} must be an absolute URI. 398 resp, content = h.request("https://example.org/chap/2",
|
/external/nanohttpd/ |
README.md | 7 * Build status: [![Build Status](https://api.travis-ci.org/NanoHttpd/nanohttpd.png)](https://travis-ci.org/NanoHttpd/nanohttpd) 8 * Coverage Status: [![Coverage Status](https://coveralls.io/repos/NanoHttpd/nanohttpd/badge.svg)](https://coveralls.io/r/NanoHttpd/nanohttpd) 9 * Current central released version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd) 84 This text has to be extrended with an example, so for now take a look at the unit tests for the usage. <https://github.com/NanoHttpd/nanohttpd/blob/master/nanolets/src/test/java/fi/iki/elonen/router/AppNanolets.java> 110 * Support for HTTPS (SSL) 133 * Simple [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing) support via `--cors` paramater 181 For a specialized HTTP (HTTPS) service you can use the module with artifactId *nanohttpd* [all...] |
/external/nanohttpd/src/site/markdown/ |
index.md | 7 * Build status: [![Build Status](https://api.travis-ci.org/NanoHttpd/nanohttpd.png)](https://travis-ci.org/NanoHttpd/nanohttpd) 8 * Coverage Status: [![Coverage Status](https://coveralls.io/repos/NanoHttpd/nanohttpd/badge.svg)](https://coveralls.io/r/NanoHttpd/nanohttpd) 9 * Current central released version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd) 84 This text has to be extrended with an example, so for now take a look at the unit tests for the usage. <https://github.com/NanoHttpd/nanohttpd/blob/master/nanolets/src/test/java/fi/iki/elonen/router/AppNanolets.java> 110 * Support for HTTPS (SSL) 133 * Simple [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing) support via `--cors` paramater 177 For a specialized HTTP (HTTPS) service you can use the module with artifactId *nanohttpd* [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
ProxyServlet.java | 551 exchange.setScheme(HttpSchemes.HTTPS.equals(request.getScheme())?HttpSchemes.HTTPS_BUFFER:HttpSchemes.HTTP_BUFFER);
|