HomeSort by relevance Sort by last modified time
    Searched defs:lifetime (Results 1 - 25 of 34) sorted by null

1 2

  /external/ipsec-tools/src/racoon/
sainfo.h 57 time_t lifetime; member in struct:sainfo
proposal.h 60 time_t lifetime; member in struct:saprop
63 int claim; /* flag to send RESPONDER-LIFETIME. */
153 * Lifetime length selection refered to the section 4.5.4 of RFC2407. It does
169 * AND send RESPONDER-LIFETIME notify message to a initiator in the
170 * case of lifetime.
remoteconf.h 58 time_t lifetime; member in struct:isakmpsa
153 time_t lifetime; /* for isakmp/ipsec */ member in struct:remoteconf
  /external/chromium/chrome/browser/net/
referrer.cc 82 // and least is lifetime (age).
90 int64 lifetime = (kNow - it->second.birth_time()).InMilliseconds(); local
95 if (lifetime <= least_useful_lifetime)
100 least_useful_lifetime = lifetime;
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_ie.h 33 const u8 *lifetime; member in struct:wpa_eapol_ie_parse
peerkey.h 32 u32 lifetime; member in struct:wpa_peerkey
peerkey.c 398 be32 lifetime; local
401 2 + RSN_SELECTOR_LEN + sizeof(lifetime);
432 lifetime = host_to_be32(peerkey->lifetime);
434 (u8 *) &lifetime, sizeof(lifetime));
531 u32 lifetime; local
549 kde.lifetime == NULL || kde.lifetime_len < 4) {
551 "Lifetime KDE in SMK M4/M5");
581 lifetime = WPA_GET_BE32(kde.lifetime)
677 be32 lifetime; local
749 u32 lifetime; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
peerkey_auth.c 159 u32 lifetime; local
164 * Lifetime KDE)
170 2 + RSN_SELECTOR_LEN + sizeof(lifetime);
187 /* Lifetime */
188 lifetime = htonl(43200); /* dot11RSNAConfigSMKLifetime */
190 (u8 *) &lifetime, sizeof(lifetime), NULL, 0);
212 u32 lifetime; local
217 * Lifetime KDE))
224 2 + RSN_SELECTOR_LEN + sizeof(lifetime);
    [all...]
wpa_auth_ie.h 33 const u8 *lifetime; member in struct:wpa_eapol_ie_parse
  /external/wpa_supplicant_8/src/rsn_supp/
peerkey.h 32 u32 lifetime; member in struct:wpa_peerkey
wpa_ie.h 35 const u8 *lifetime; member in struct:wpa_eapol_ie_parse
peerkey.c 399 be32 lifetime; local
402 2 + RSN_SELECTOR_LEN + sizeof(lifetime);
433 lifetime = host_to_be32(peerkey->lifetime);
435 (u8 *) &lifetime, sizeof(lifetime));
532 u32 lifetime; local
550 kde.lifetime == NULL || kde.lifetime_len < 4) {
552 "Lifetime KDE in SMK M4/M5");
582 lifetime = WPA_GET_BE32(kde.lifetime)
680 be32 lifetime; local
752 u32 lifetime; local
    [all...]
  /external/chromium/net/url_request/
url_request_throttler_unittest.cc 290 TimeDelta lifetime = TimeDelta::FromMilliseconds( local
298 TimeAndBool(now_ - (lifetime - kFiveMs), false, __LINE__),
299 TimeAndBool(now_ - lifetime, true, __LINE__),
300 TimeAndBool(now_ - (lifetime + kFiveMs), true, __LINE__)};
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayserver.h 135 // Called when the timer for checking lifetime times out.
200 const std::string& password, uint32 lifetime);
204 uint32 lifetime() { return lifetime_; } function in class:cricket::RelayServerBinding
214 // used for longer than the lifetime, then we send a signal.
relayserver.cc 375 // Compute the appropriate lifetime for this binding.
376 uint32 lifetime = MAX_LIFETIME; local
380 lifetime = talk_base::_min(lifetime, lifetime_attr->value() * 1000);
382 binding = new RelayServerBinding(this, username, "0", lifetime);
460 res_lifetime_attr->SetValue(int_conn->binding()->lifetime() / 1000);
678 const std::string& password, uint32 lifetime)
680 lifetime_(lifetime) {
755 // If the lifetime timeout has been exceeded, then send a signal.
  /external/oprofile/opjitconv/
jitsymbol.c 211 unsigned long long lifetime = 0; local
218 if (candidate == -1 || x > lifetime) {
220 lifetime = x;
311 * with the one indexed by keep_idx. Returns the total lifetime of the symbols
367 * symbol with the maximal lifetime and split/truncate all symbols that overlap
385 "life_end=%lli, lifetime=%lli\n",
  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc 144 // Compute lifetime of document
145 unsigned long lifetime; local
147 lifetime = atoi(s_temp.c_str());
150 lifetime = i_temp - date;
154 lifetime = (now - i_temp) / 10;
159 return (lifetime > current_age) ? HCS_FRESH : HCS_STALE;
httpcommon.cc 906 ::TimeStamp lifetime; local
938 ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_buf_desc, 0, &neg->ctx, &out_buf_desc, &ret_flags, &lifetime);
1002 ret = AcquireCredentialsHandleA(0, want_negotiate ? NEGOSSP_NAME_A : NTLMSP_NAME_A, SECPKG_CRED_OUTBOUND, 0, pauth_id, 0, 0, &cred, &lifetime);
1013 ret = InitializeSecurityContextA(&cred, 0, spn, flags, 0, SECURITY_NATIVE_DREP, 0, 0, &ctx, &out_buf_desc, &ret_flags, &lifetime);
  /external/wpa_supplicant/
wpa_i.h 61 u32 lifetime; member in struct:wpa_peerkey
  /external/chromium/net/http/
http_response_headers.cc 842 TimeDelta lifetime = local
844 if (lifetime == TimeDelta())
847 return lifetime <= GetCurrentAge(request_time, response_time, current_time);
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 418 /// variable with lifetime.
421 Qualifiers::ObjCLifetime lifetime) {
422 switch (lifetime) {
490 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); local
491 if (!lifetime) {
499 // If we're emitting a value with lifetime, we have to do the
510 if (lifetime != Qualifiers::OCL_ExplicitNone)
529 if (lifetime == Qualifiers::OCL_Weak)
540 switch (lifetime) {
578 if (accessedByInit && lifetime == Qualifiers::OCL_Strong)
590 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); local
    [all...]
  /external/tcpdump/
print-icmp.c 451 u_int lifetime, num, size; local
458 (void)strncpy(cp, " lifetime ", sizeof(buf) - (cp - buf));
460 lifetime = EXTRACT_16BITS(&ihp->ird_lifetime);
461 if (lifetime < 60) {
463 lifetime);
464 } else if (lifetime < 60 * 60) {
466 lifetime / 60, lifetime % 60);
470 lifetime / 3600,
471 (lifetime % 3600) / 60
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_fast.c 878 u32 lifetime; local
896 lifetime = WPA_GET_BE32(pos);
900 lifetime, (lifetime - (u32) now.sec) / 86400);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_fast.c 134 os_time_t lifetime = 0; local
211 "PAC-Key lifetime length %d",
216 lifetime = WPA_GET_BE32(pos + 2);
245 if (os_get_time(&now) < 0 || lifetime <= 0 || now.sec > lifetime) {
247 "(lifetime=%ld now=%ld)", lifetime, now.sec);
257 } else if (lifetime - now.sec < data->pac_key_refresh_time) {
492 /* PAC-Key lifetime in seconds (hard limit) */
498 * seconds (or fewer) of the lifetime remains
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast.c 878 u32 lifetime; local
896 lifetime = WPA_GET_BE32(pos);
900 lifetime, (lifetime - (u32) now.sec) / 86400);
    [all...]

Completed in 3290 milliseconds

1 2