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

1 2

  /external/chromium/net/proxy/
proxy_info.h 54 bool is_https() const { function in class:net::ProxyInfo
57 return proxy_server().is_https();
proxy_server.h 55 bool is_https() const { return scheme_ == SCHEME_HTTPS; } function in class:net::ProxyServer
  /external/chromium_org/net/cookies/
cookie_util.h 41 NET_EXPORT GURL CookieOriginToURL(const std::string& domain, bool is_https);
cookie_util.cc 203 GURL CookieOriginToURL(const std::string& domain, bool is_https) {
207 const std::string scheme = is_https ? "https" : "http";
  /external/chromium_org/net/proxy/
proxy_info.h 65 bool is_https() const { function in class:net::ProxyInfo
68 return proxy_server().is_https();
proxy_server.h 55 bool is_https() const { return scheme_ == SCHEME_HTTPS; } function in class:net::ProxyServer
  /external/chromium_org/net/quic/
quic_stream_factory.h 42 // For http, |is_https| is false and |cert_verifier| can be null.
44 bool is_https,
85 // owned by |request|. |is_https| specifies if the protocol is https or not.
92 bool is_https,
141 bool is_https,
quic_stream_factory.cc 39 bool is_https,
89 bool is_https,
95 is_https_(is_https),
185 bool is_https,
191 int rv = factory_->Create(host_port_proxy_pair, is_https, cert_verifier,
195 is_https_ = is_https;
269 bool is_https,
286 is_https, cert_verifier, net_log));
405 bool is_https,
455 if (is_https) {
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
_base.py 121 return fields[0], get_default_port(request.is_https())
135 if request.is_https():
146 if (port != get_default_port(request.is_https())):
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mock.py 176 is_https=False):
184 is_https: Whether this request is over SSL.
193 # conflict with self.is_https(), it is named as such.
194 self.is_https_ = is_https
203 def is_https(self): member in class:MockRequest
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/
_base.py 111 return fields[0], get_default_port(request.is_https())
hybi00.py 101 if request.is_https():
112 if (port != get_default_port(request.is_https())):
  /external/chromium/net/http/
http_stream_factory_impl_job.cc 563 if (proxy_info_.is_http() || proxy_info_.is_https())
569 if (proxy_info_.is_https()) {
637 } else if (proxy_info_.is_https() && connection_->socket() &&
731 bool using_proxy = (proxy_info_.is_http() || proxy_info_.is_https()) &&
848 if (!proxy_info_.is_https())
871 if (proxy_info_.is_https() && ssl_config->send_client_cert) {
933 if (proxy_info_.is_https() && ssl_config_.send_client_cert) {
    [all...]
http_network_transaction.cc 322 DCHECK(proxy_info_.is_http() || proxy_info_.is_https());
770 bool using_proxy = (proxy_info_.is_http() || proxy_info_.is_https()) &&
    [all...]
  /external/chromium_org/net/socket/
client_socket_pool_manager.cc 175 if (proxy_info.is_http() || proxy_info.is_https()) {
180 if (proxy_info.is_https()) {
260 if (proxy_info.is_http() || proxy_info.is_https()) {
  /external/chromium_org/net/http/
http_stream_factory_impl_job.cc 291 proxy_info_.proxy_server().is_https() ||
812 if (proxy_info_.is_http() || proxy_info_.is_https())
817 if (proxy_info_.is_https()) {
946 } else if (proxy_info_.is_https() && connection_->socket() &&
    [all...]
http_network_transaction.cc 345 DCHECK(proxy_info_.is_http() || proxy_info_.is_https());
826 bool using_proxy = (proxy_info_.is_http() || proxy_info_.is_https()) &&
    [all...]
  /external/chromium/net/socket/
client_socket_pool_manager.cc 126 if (proxy_info.is_http() || proxy_info.is_https()) {
131 if (proxy_info.is_https()) {
203 if (proxy_info.is_http() || proxy_info.is_https()) {
  /external/chromium_org/jingle/glue/
proxy_resolving_client_socket.cc 267 if (proxy_info_.is_https() && ssl_config_.send_client_cert) {
  /external/chromium_org/net/url_request/
url_request_ftp_job.cc 143 else if (proxy_info_.is_http() || proxy_info_.is_https())
url_request_http_job.cc 1405 bool is_https = request_->url().SchemeIs("https"); local
    [all...]
  /external/chromium/net/url_request/
url_request_http_job.cc 1331 bool is_https = request_->url().SchemeIs("https"); local
    [all...]
  /external/chromium_org/chrome/browser/net/
chrome_network_delegate.cc 683 bool is_https = request->url().SchemeIs("https"); local
687 (is_http || is_https)) { // Only record for HTTP or HTTPS urls.
    [all...]
  /external/chromium_org/net/socket_stream/
socket_stream.cc 748 if (proxy_info_.is_https())
770 const char* scheme = proxy_info_.is_https() ? "https://" : "http://";
    [all...]
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 232 def is_https(self): member in class:_StandaloneRequest
233 """Mimic request.is_https()."""
    [all...]

Completed in 877 milliseconds

1 2