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

1 2

  /external/chromium_org/chrome/common/extensions/
csp_validator.cc 30 , is_secure(false) {
35 bool is_secure; member in struct:extensions::csp_validator::__anon9101::DirectiveStatus
101 status->is_secure = HasOnlySecureTokens(tokenizer, type);
143 if (script_src_status.seen_in_policy && !script_src_status.is_secure)
146 if (object_src_status.seen_in_policy && !object_src_status.is_secure)
149 if (default_src_status.seen_in_policy && !default_src_status.is_secure) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/
_base.py 80 def get_default_port(is_secure):
81 if is_secure:
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
_base.py 80 def get_default_port(is_secure):
81 if is_secure:
  /external/chromium/chrome/browser/password_manager/
password_store_mac_internal.h 95 bool* is_secure,
password_store_mac.cc 175 GURL URLFromComponents(bool is_secure, const std::string& host, int port,
178 std::string scheme(is_secure ? "https" : "http");
548 bool is_secure; local
550 &is_secure, &security_domain)) {
556 SecProtocolType protocol = is_secure ? kSecProtocolTypeHTTPS
650 bool is_secure; local
652 &is_secure, &security_domain)) {
658 SecProtocolType protocol = is_secure ? kSecProtocolTypeHTTPS
673 bool* is_secure, std::string* security_domain) {
683 if (is_secure)
    [all...]
  /external/chromium/net/spdy/
spdy_session_pool.h 64 // For testing, setting is_secure to false allows Spdy to connect with a
74 bool is_secure);
spdy_session_pool.cc 115 bool is_secure) {
134 return (*spdy_session)->InitializeWithSocket(connection, is_secure,
spdy_session.h 92 // testing, setting is_secure to false allows initialization with a
96 bool is_secure,
  /external/chromium/net/websockets/
websocket_handshake.h 33 bool is_secure() const;
websocket_handshake.cc 40 bool WebSocketHandshake::is_secure() const { function in class:net::WebSocketHandshake
132 bool secure = is_secure();
websocket_handshake_unittest.cc 234 EXPECT_FALSE(handshake->is_secure());
244 EXPECT_TRUE(handshake->is_secure());
websocket_job_unittest.cc 513 EXPECT_TRUE(GetSocket(job.get())->is_secure());
519 EXPECT_FALSE(GetSocket(job.get())->is_secure());
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac_internal.h 97 bool* is_secure,
password_store_mac.cc 178 GURL URLFromComponents(bool is_secure, const std::string& host, int port,
181 std::string scheme(is_secure ? "https" : "http");
552 bool is_secure; local
554 &is_secure, &security_domain)) {
560 SecProtocolType protocol = is_secure ? kSecProtocolTypeHTTPS
654 bool is_secure; local
656 &is_secure, &security_domain)) {
662 SecProtocolType protocol = is_secure ? kSecProtocolTypeHTTPS
677 bool* is_secure, std::string* security_domain) {
687 if (is_secure)
    [all...]
  /external/chromium_org/net/cookies/
parsed_cookie.h 66 bool SetIsSecure(bool is_secure);
parsed_cookie.cc 235 bool ParsedCookie::SetIsSecure(bool is_secure) {
236 return SetBool(&secure_index_, kSecureTokenName, is_secure);
  /external/chromium_org/net/spdy/
spdy_session_pool.h 78 // |is_secure| can be false for testing or when SPDY is configured
79 // to work with non-secure sockets. If |is_secure| is true,
93 bool is_secure);
spdy_session_pool.cc 93 bool is_secure) {
119 connection.Pass(), this, is_secure, certificate_error_code);
spdy_test_util_common.cc 498 bool is_secure) {
510 if (is_secure) {
552 is_secure));
566 OK, false /* is_secure */);
576 expected_error, false /* is_secure */);
584 OK, true /* is_secure */);
658 true /* is_secure */));
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
spdyview.js 129 tablePrinter.addCell(session.is_secure);
  /external/chromium/net/socket_stream/
socket_stream.cc 94 bool SocketStream::is_secure() const { function in class:net::SocketStream
576 else if (is_secure()) {
733 if (is_secure()) {
796 if (is_secure())
    [all...]
socket_stream.h 110 bool is_secure() const;
  /external/chromium_org/net/socket_stream/
socket_stream.cc 129 bool SocketStream::is_secure() const { function in class:net::SocketStream
754 } else if (is_secure()) {
907 if (is_secure()) {
973 if (is_secure())
    [all...]
socket_stream.h 127 bool is_secure() const;
  /external/chromium_org/net/websockets/
websocket_job.cc 568 std::string scheme = socket_->is_secure() ? "https" : "http";
610 if (socket_->is_secure() && !use_ssl)

Completed in 2893 milliseconds

1 2