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

1 2 3 4

  /external/chromium/net/base/
transport_security_state_unittest.cc 17 EXPECT_FALSE(TransportSecurityState::ParseHeader(
19 EXPECT_FALSE(TransportSecurityState::ParseHeader(
21 EXPECT_FALSE(TransportSecurityState::ParseHeader(
23 EXPECT_FALSE(TransportSecurityState::ParseHeader(
25 EXPECT_FALSE(TransportSecurityState::ParseHeader(
27 EXPECT_FALSE(TransportSecurityState::ParseHeader(
29 EXPECT_FALSE(TransportSecurityState::ParseHeader(
31 EXPECT_FALSE(TransportSecurityState::ParseHeader(
33 EXPECT_FALSE(TransportSecurityState::ParseHeader(
35 EXPECT_FALSE(TransportSecurityState::ParseHeader
    [all...]
transport_security_state.h 21 // TransportSecurityState
26 class TransportSecurityState :
27 public base::RefCountedThreadSafe<TransportSecurityState> {
29 TransportSecurityState();
99 // Thus it must not reenter the TransportSecurityState object.
100 virtual void StateIsDirty(TransportSecurityState* state) = 0;
117 friend class base::RefCountedThreadSafe<TransportSecurityState>;
120 ~TransportSecurityState();
142 DISALLOW_COPY_AND_ASSIGN(TransportSecurityState);
transport_security_state.cc 27 const long int TransportSecurityState::kMaxHSTSAgeSecs = 86400 * 365; // 1 year
29 TransportSecurityState::TransportSecurityState()
39 void TransportSecurityState::EnableHost(const std::string& host,
66 bool TransportSecurityState::DeleteHost(const std::string& host) {
87 bool TransportSecurityState::IsEnabledForHost(DomainState* result,
130 void TransportSecurityState::DeleteSince(const base::Time& time) {
159 if (i > TransportSecurityState::kMaxHSTSAgeSecs)
160 i = TransportSecurityState::kMaxHSTSAgeSecs;
167 bool TransportSecurityState::ParseHeader(const std::string& value
    [all...]
  /external/chromium/chrome/browser/
transport_security_persister.h 5 // TransportSecurityState maintains an in memory database containing the
12 // let the TransportSecurityState run for a while without being loaded.
17 // deserialises and configures the TransportSecurityState.
19 // The TransportSecurityState object supports running a callback function
22 // TransportSecurityState calls...
30 // copies the current state of the TransportSecurityState, serialises
44 public net::TransportSecurityState::Delegate {
47 void Initialize(net::TransportSecurityState* state,
50 // Called by the TransportSecurityState when it changes its state.
51 virtual void StateIsDirty(net::TransportSecurityState*);
    [all...]
transport_security_persister.cc 25 net::TransportSecurityState* state, const FilePath& profile_path) {
63 net::TransportSecurityState* state) {
  /external/chromium_org/chrome/browser/net/
transport_security_persister.h 5 // TransportSecurityState maintains an in memory database containing the
12 // let the TransportSecurityState run for a while without being loaded.
17 // deserializes and configures the TransportSecurityState.
19 // The TransportSecurityState object supports running a callback function
22 // TransportSecurityState calls...
30 // copies the current state of the TransportSecurityState, serializes
46 : public net::TransportSecurityState::Delegate,
49 TransportSecurityPersister(net::TransportSecurityState* state,
54 // Called by the TransportSecurityState when it changes its state.
55 virtual void StateIsDirty(net::TransportSecurityState*) OVERRIDE
    [all...]
transport_security_persister_unittest.cc 19 using net::TransportSecurityState;
51 TransportSecurityState state_;
65 TransportSecurityState::DomainState domain_state;
82 TransportSecurityState::DomainState::MODE_FORCE_HTTPS);
85 TransportSecurityState::DomainState::MODE_FORCE_HTTPS);
88 TransportSecurityState::DomainState::MODE_FORCE_HTTPS);
92 TransportSecurityState::DomainState::MODE_FORCE_HTTPS);
124 std::map<std::string, TransportSecurityState::DomainState> saved;
125 TransportSecurityState::Iterator i(state_);
153 TransportSecurityState::Iterator j(state_)
    [all...]
transport_security_persister.cc 26 using net::TransportSecurityState;
123 TransportSecurityState* state,
153 TransportSecurityState* state) {
166 TransportSecurityState::Iterator state(*transport_security_state_);
169 const TransportSecurityState::DomainState& domain_state =
183 case TransportSecurityState::DomainState::MODE_FORCE_HTTPS:
186 case TransportSecurityState::DomainState::MODE_DEFAULT:
223 TransportSecurityState* state) {
243 TransportSecurityState::DomainState domain_state;
286 TransportSecurityState::DomainState::MODE_FORCE_HTTPS
    [all...]
chrome_fraudulent_certificate_reporter_unittest.cc 87 EXPECT_TRUE(net::TransportSecurityState::IsGooglePinnedProperty(
112 EXPECT_FALSE(net::TransportSecurityState::IsGooglePinnedProperty(
  /external/chromium_org/net/http/
transport_security_state_unittest.cc 50 return TransportSecurityState::CanonicalizeHost(host);
53 bool GetStaticDomainState(TransportSecurityState* state,
56 TransportSecurityState::DomainState* result) {
60 void EnableHost(TransportSecurityState* state,
62 const TransportSecurityState::DomainState& domain_state) {
68 TransportSecurityState state;
69 TransportSecurityState::DomainState domain_state;
80 TransportSecurityState state;
81 TransportSecurityState::DomainState domain_state;
92 TransportSecurityState state
    [all...]
transport_security_state.cc 86 TransportSecurityState::TransportSecurityState()
91 TransportSecurityState::Iterator::Iterator(const TransportSecurityState& state)
96 TransportSecurityState::Iterator::~Iterator() {}
98 void TransportSecurityState::SetDelegate(
99 TransportSecurityState::Delegate* delegate) {
104 void TransportSecurityState::EnableHost(const std::string& host,
121 bool TransportSecurityState::DeleteDynamicDataForHost(const std::string& host) {
138 bool TransportSecurityState::GetDomainState(const std::string& host
    [all...]
transport_security_state.h 35 class NET_EXPORT TransportSecurityState
41 // Thus it must not reenter the TransportSecurityState object.
42 virtual void StateIsDirty(TransportSecurityState* state) = 0;
48 TransportSecurityState();
49 ~TransportSecurityState();
146 explicit Iterator(const TransportSecurityState& state);
163 // TransportSecurityState.
171 // TransportSecurityState.
178 // TransportSecurityState.
323 DISALLOW_COPY_AND_ASSIGN(TransportSecurityState);
    [all...]
  /external/chromium/net/url_request/
url_request_context_storage.h 28 class TransportSecurityState;
57 TransportSecurityState* transport_security_state);
82 scoped_refptr<TransportSecurityState> transport_security_state_;
url_request_context.h 144 TransportSecurityState* transport_security_state() const {
148 TransportSecurityState* state) {
224 scoped_refptr<TransportSecurityState> transport_security_state_;
url_request_http_job.cc 61 TransportSecurityState* sts)
72 TransportSecurityState::DomainState domain_state;
75 TransportSecurityState::DomainState::MODE_OPPORTUNISTIC;
88 scoped_refptr<TransportSecurityState> sts_;
180 TransportSecurityState::DomainState domain_state;
188 TransportSecurityState::DomainState::MODE_STRICT) {
506 const bool ok = TransportSecurityState::ParseHeader(
517 TransportSecurityState::DomainState domain_state;
519 domain_state.mode = TransportSecurityState::DomainState::MODE_STRICT;
531 const bool ok = TransportSecurityState::ParseHeader
    [all...]
  /external/chromium_org/net/socket/
ssl_client_socket.h 22 class TransportSecurityState;
34 TransportSecurityState* transport_security_state_arg,
43 TransportSecurityState* transport_security_state;
client_socket_pool_manager_impl.h 35 class TransportSecurityState;
64 TransportSecurityState* transport_security_state,
110 TransportSecurityState* const transport_security_state_;
ssl_client_socket_nss.h 43 class TransportSecurityState;
183 TransportSecurityState* transport_security_state_;
  /external/chromium_org/net/url_request/
url_request_context_storage.h 29 class TransportSecurityState;
63 TransportSecurityState* transport_security_state);
92 scoped_ptr<TransportSecurityState> transport_security_state_;
url_request_context.h 152 TransportSecurityState* transport_security_state() const {
156 TransportSecurityState* state) {
222 TransportSecurityState* transport_security_state_;
  /external/chromium/net/socket_stream/
socket_stream_job.cc 27 TransportSecurityState::DomainState domain_state;
32 domain_state.mode == TransportSecurityState::DomainState::MODE_STRICT) {
  /external/chromium_org/net/socket_stream/
socket_stream_job.h 20 class TransportSecurityState;
41 TransportSecurityState* sts,
socket_stream_job.cc 26 TransportSecurityState* sts,
29 TransportSecurityState::DomainState domain_state;
  /external/chromium_org/remoting/protocol/
ssl_hmac_channel_authenticator.h 21 class TransportSecurityState;
93 scoped_ptr<net::TransportSecurityState> transport_security_state_;
  /external/chromium/chrome/browser/profiles/
profile_io_data.h 38 class TransportSecurityState;
106 scoped_refptr<net::TransportSecurityState> transport_security_state;

Completed in 917 milliseconds

1 2 3 4