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

1 2

  /external/chromium_org/chrome/browser/chromeos/attestation/
fake_certificate.h 16 // certificate |expiry| is relative to the current time. The certificate will
17 // be (or have been) valid from sometime before the current time or expiry,
20 bool GetFakeCertificate(const base::TimeDelta& expiry,
fake_certificate.cc 52 bool GetFakeCertificate(const base::TimeDelta& expiry,
55 base::Time valid_expiry = base::Time::Now() + expiry;
  /external/chromium_org/net/http/
transport_security_persister_unittest.cc 57 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
63 state_.AddHSTS(kYahooDomain, expiry, include_subdomains);
92 base::Time expiry = local
98 state_.AddHSTS("www.example.com", expiry, include_subdomains);
99 state_.AddHPKP("www.example.com", expiry, include_subdomains,
105 expiry =
109 state_.AddHSTS("www.example.net", expiry, include_subdomains);
110 state_.AddHPKP("www.example.net", expiry, include_subdomains,
157 "\"expiry\": 1266815027.983453, "
187 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000) local
    [all...]
transport_security_state_unittest.cc 71 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
75 state.AddHSTS("yahoo.com", expiry, include_subdomains);
83 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
87 state.AddHSTS("YAhoo.coM", expiry, include_subdomains);
95 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
99 state.AddHSTS("yahoo.com", expiry, include_subdomains);
107 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
111 state.AddHSTS("yahoo.com", expiry, include_subdomains);
124 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
128 state.AddHSTS("yahoo.com", expiry, include_subdomains)
137 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
154 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
622 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
    [all...]
transport_security_state.h 225 bool AddHSTS(const std::string& host, const base::Time& expiry,
230 bool AddHPKP(const std::string& host, const base::Time& expiry,
http_auth_sspi_win.cc 67 TimeStamp expiry; local
79 &expiry); // ptsExpiry
86 TimeStamp expiry; local
101 &expiry); // ptsExpiry
transport_security_persister.cc 72 const char kExpiry[] = "expiry";
215 double expiry; local
238 !parsed->GetDouble(kExpiry, &expiry)) {
271 domain_state.upgrade_expiry = base::Time::FromDoubleT(expiry);
transport_security_state.cc 649 const base::Time& expiry,
664 domain_state.upgrade_expiry = expiry;
671 const base::Time& expiry,
687 domain_state.dynamic_spki_hashes_expiry = expiry;
  /external/chromium/net/base/
transport_security_state_unittest.cc 147 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
150 domain_state.expiry = expiry;
160 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
163 domain_state.expiry = expiry;
173 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
176 domain_state.expiry = expiry;
186 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000) local
219 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
253 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
276 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
296 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
551 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); local
    [all...]
transport_security_state.h 63 base::Time expiry; // the absolute time (UTC) when this record expires member in struct:net::TransportSecurityState::DomainState
transport_security_state.cc 109 if (current_time > j->second.expiry) {
296 state->SetDouble("expiry", i->second.expiry.ToDoubleT());
362 double expiry; local
366 !state->GetDouble("expiry", &expiry)) {
405 base::Time expiry_time = base::Time::FromDoubleT(expiry);
431 new_state.expiry = expiry_time;
495 out->expiry = out->created;
cert_verifier.h 33 // Returns true if |current_time| is greater than or equal to |expiry|.
40 base::Time expiry; member in struct:net::CachedCertVerifyResult
cert_verifier.cc 84 return current_time >= expiry;
402 cached_result.expiry = current_time + base::TimeDelta::FromSeconds(ttl);
dnsrr_resolver.cc 555 const base::Time expiry = fetch_time + delta; local
556 return current_time >= expiry;
  /external/chromium/chrome/browser/automation/
automation_util.cc 222 cookie_dict->SetDouble("expiry", cookie.ExpiryDate().ToDoubleT());
279 double expiry = 0; local
304 if (cookie_dict->HasKey("expiry")) {
306 if (cookie_dict->GetInteger("expiry", &expiry_int)) {
307 expiry = expiry_int;
308 } else if (!cookie_dict->GetDouble("expiry", &expiry)) {
309 reply.SendError("optional 'expiry' invalid");
322 base::Time::FromDoubleT(expiry), secure, http_only));
  /external/chromium/net/http/
http_auth_sspi_win.cc 67 TimeStamp expiry; local
79 &expiry); // ptsExpiry
86 TimeStamp expiry; local
101 &expiry); // ptsExpiry
  /external/chromium_org/chrome/test/chromedriver/js/
add_cookie.js 87 if (cookie['expiry']) {
88 var expiredDate = new Date(cookie['expiry'] * 1000);
  /external/chromium_org/chrome/test/chromedriver/
window_commands.cc 63 double expiry,
66 : name(name), value(value), domain(domain), path(path), expiry(expiry),
73 double expiry; member in struct:__anon7022::Cookie
87 dict->SetDouble("expiry", cookie.expiry);
112 double expiry = 0; local
113 cookie_dict->GetDouble("expires", &expiry);
114 expiry /= 1000; // Convert from millisecond to second.
121 Cookie(name, value, domain, path, expiry, secure, session))
    [all...]
  /external/libpcap/
pcap-dos.c 209 struct timeval now, expiry; local
216 expiry.tv_usec = now.tv_usec + 1000UL * p->inter_packet_wait;
217 expiry.tv_sec = now.tv_sec;
218 while (expiry.tv_usec >= 1000000L)
220 expiry.tv_usec -= 1000000L;
221 expiry.tv_sec++;
293 if (timercmp(&now, &expiry, >))
    [all...]
  /external/chromium_org/chrome/browser/automation/
automation_util.cc 318 cookie_dict->SetDouble("expiry", cookie.ExpiryDate().ToDoubleT());
378 double expiry = 0; local
405 if (cookie_dict->HasKey("expiry")) {
406 if (!cookie_dict->GetDouble("expiry", &expiry)) {
407 reply.SendError("optional 'expiry' invalid");
428 base::Time::FromDoubleT(expiry), secure, http_only, priority));
  /external/chromium/net/socket/
ssl_client_socket_win.cc 253 TimeStamp expiry; local
265 &expiry); // Optional
620 TimeStamp expiry; local
635 &expiry);
952 TimeStamp expiry; local
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduComposer.java 621 case PduHeaders.EXPIRY:
622 long expiry = mPduHeader.getLongInteger(field); local
623 if (-1 == expiry) {
633 appendLongInteger(expiry);
822 // X-Mms-Expiry Optional
823 appendHeader(PduHeaders.EXPIRY);
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 212 int expiry) throws SipException {
215 if (expiry == 0) {
222 request.addHeader(mHeaderFactory.createExpiresHeader(expiry));
  /external/kernel-headers/original/linux/
key.h 127 time_t expiry; /* time at which key expires (or 0) */ member in struct:key
  /external/chromium/net/url_request/
url_request_http_job.cc 73 domain_state.expiry = current_time + max_age_delta;
518 domain_state.expiry = current_time + max_age_delta;
542 domain_state.expiry = current_time + max_age_delta;
    [all...]

Completed in 1385 milliseconds

1 2