HomeSort by relevance Sort by last modified time
    Searched refs:HTTPS (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/chrome/browser/net/
chrome_network_data_saving_metrics.h 23 HTTPS, // An https request.
chrome_network_data_saving_metrics_unittest.cc 329 true, chrome_browser_net::HTTPS,
345 false, chrome_browser_net::HTTPS,
358 true, chrome_browser_net::HTTPS,
chrome_network_data_saving_metrics.cc 330 // The retry list has the scheme prefix for https but not for http.
379 return HTTPS;
456 DailyContentLengthUpdate https(
458 https.UpdateForDataChange(days_since_last_update);
482 case HTTPS:
483 https.Add(received_content_length);
516 https.GetListPrefValue(kNumDaysInHistory - 2),
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ProxyServer.h 44 HTTPS,
ProxyServer.cpp 40 case ProxyServer::HTTPS:
  /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...]
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)
  /external/chromium_org/net/http/
http_proxy_client_socket_pool_unittest.cc 37 HTTPS,
107 (std::string("https://") + kHttpsProxyHost));
145 // for the HTTP or HTTPS proxy.
150 GURL(tunnel ? "https://www.google.com/" : "http://www.google.com"),
233 // All tests are run with three different proxy types: HTTP, HTTPS (non-SPDY)
243 HttpProxyClientSocketPoolTestParams(HTTPS, kProtoDeprecatedSPDY2),
246 HttpProxyClientSocketPoolTestParams(HTTPS, kProtoSPDY3),
249 HttpProxyClientSocketPoolTestParams(HTTPS, kProtoSPDY31),
252 HttpProxyClientSocketPoolTestParams(HTTPS, kProtoSPDY4a2),
255 HttpProxyClientSocketPoolTestParams(HTTPS, kProtoHTTP2Draft04)
    [all...]
http_stream_parser_unittest.cc 371 HTTPS,
401 request_info.url = GURL("https://localhost");
  /external/chromium/chrome/browser/resources/net_internals/
hstsview.js 6 * HSTS is HTTPS Strict Transport Security: a way for sites to elect to always
7 * use HTTPS. See http://dev.chromium.org/sts
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/analytics/
popup.js 12 * code snippet. It has been modified to pull the HTTPS version of ga.js
25 ga.src = 'https://ssl.google-analytics.com/ga.js';
  /external/chromium/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 207 "https://www.foo.com:110", // https
299 SetManualProxy(input.mode, source, input.https_uri, MK_SCHM(HTTPS),
335 EXPECT_FALSE(config.CanBeWrittenByUser(false, "https"));
365 else if (scheme == "https")
366 net_scheme = MK_SCHM(HTTPS);
384 "http", "https", "ftp", "socks",
480 config_service()->UISetProxyConfigToProxyPerScheme("https",
481 net::ProxyServer::FromURI(input.https_uri, MK_SCHM(HTTPS)));
654 TestReadWriteAccessForScheme(MK_SRC(POLICY), https_uri, "https");
    [all...]
  /external/chromium/net/http/
http_proxy_client_socket_pool_unittest.cc 39 HTTPS,
120 // for the HTTP or HTTPS proxy.
126 GURL(tunnel ? "https://www.google.com/" : "http://www.google.com"),
218 // All tests are run with three different proxy types: HTTP, HTTPS (non-SPDY)
222 ::testing::Values(HTTP, HTTPS, SPDY));
516 // HTTPS or SPDY Proxy CONNECT responses are trustworthy
  /external/chromium_org/tools/page_cycler/webpagereplay/tests/
2012Q2.js 47 // HTTPS pages.
48 ["https://wordpress.com/"],
49 ["https://www.conduit.com/"],
50 ["https://www.facebook.com",
51 "https://www.facebook.com/barackobama"],
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
ruby.php 110 'URI::Generic', 'URI::HTTP', 'URI::HTTPS',
rails.php 103 'URI::Generic', 'URI::HTTP', 'URI::HTTPS',
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 86 * the referrer is HTTPS.
109 if (parentUrl.protocol == 'https:') {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
    [all...]
httplib.py     [all...]
urllib.py 385 """Use HTTPS protocol."""
403 if urltype.lower() != 'https':
411 #print "proxy via https:", host, selector
412 if not host: raise IOError, ('https error', 'no host given')
423 h = httplib.HTTPS(host, 0,
448 return addinfourl(fp, headers, "https:" + url, errcode)
651 # other than HTTP, HTTPS or FTP.
654 newurl_lower.startswith('https://') or
741 newurl = 'https://' + host + selector
742 proxy = self.proxies['https']
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
    [all...]
httplib.py     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jar 

Completed in 1481 milliseconds

1 2