HomeSort by relevance Sort by last modified time
    Searched defs:lifetime (Results 26 - 50 of 58) sorted by null

12 3

  /external/dhcpcd-6.8.2/
if-bsd.c 1115 struct in6_addrlifetime *lifetime; local
1118 lifetime = &ifr6.ifr_ifru.ifru_lifetime;
1120 if (lifetime->ia6t_preferred)
1122 (uint32_t)(lifetime->ia6t_preferred -
1123 MIN(t, lifetime->ia6t_preferred));
1126 if (lifetime->ia6t_expire) {
1128 (uint32_t)(lifetime->ia6t_expire -
1129 MIN(t, lifetime->ia6t_expire));
1133 lifetime->ia6t_vltime - ia->prefix_vltime;
    [all...]
ipv6nd.c 335 rap->lifetime = seconds;
360 if (rap->lifetime && rap->expired) {
370 if (rap->lifetime && !rap->expired) {
736 uint32_t lifetime, mtuv; local
848 if (new_rap == 0 && rap->lifetime == 0)
851 rap->lifetime = ntohs(nd_ra->nd_ra_router_lifetime);
859 if (rap->lifetime)
869 lifetime = ~0U;
1026 lifetime = ap->prefix_vltime;
1044 lifetime = ntohl(rdnss->nd_opt_rdnss_lifetime)
    [all...]
  /external/openssh/
ssh-agent.c 155 /* Default lifetime in seconds (0 == forever) */
156 static long lifetime = 0; variable
639 error("%s: bad lifetime constraint: %s",
659 if (lifetime && !death)
660 death = monotime() + lifetime;
791 if (lifetime && !death)
792 death = monotime() + lifetime;
1282 if ((lifetime = convtime(optarg)) == -1) {
1283 fprintf(stderr, "Invalid lifetime\n");
    [all...]
  /external/tcpdump/
print-icmp.c 449 u_int lifetime, num, size; local
456 (void)strncpy(cp, " lifetime ", sizeof(buf) - (cp - buf));
458 lifetime = EXTRACT_16BITS(&ihp->ird_lifetime);
459 if (lifetime < 60) {
461 lifetime);
462 } else if (lifetime < 60 * 60) {
464 lifetime / 60, lifetime % 60);
468 lifetime / 3600,
469 (lifetime % 3600) / 60
    [all...]
print-isoclns.c 234 { 0xa, "Lifetime"},
267 { 0x0, "Lifetime expired while data unit in transit"},
268 { 0x1, "Lifetime expired during reassembly"},
749 uint8_t lifetime; /* units of 500ms */ member in struct:clnp_header_t
859 ND_PRINT((ndo, "\n\t%s PDU, hlen: %u, v: %u, lifetime: %u.%us, Segment PDU length: %u, checksum: 0x%04x",
863 clnp_header->lifetime/2,
864 (clnp_header->lifetime%2)*5,
    [all...]
  /external/webrtc/webrtc/base/
httpcommon.cc 905 ::TimeStamp lifetime; local
937 ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_buf_desc, 0, &neg->ctx, &out_buf_desc, &ret_flags, &lifetime);
1003 SECPKG_CRED_OUTBOUND, 0, pauth_id, 0, 0, &cred, &lifetime);
1014 ret = InitializeSecurityContextA(&cred, 0, spn, flags, 0, SECURITY_NATIVE_DREP, 0, 0, &ctx, &out_buf_desc, &ret_flags, &lifetime);
  /external/webrtc/webrtc/p2p/base/
turnserver.cc 55 // allocation, and self-deletes when its lifetime timer expires.
75 // allocation, and self-deletes when its lifetime timer expires.
626 // Figure out the lifetime and start the allocation timer.
630 LOG_J(LS_INFO, this) << "Created allocation, lifetime=" << lifetime_secs;
651 // Figure out the new lifetime.
658 LOG_J(LS_INFO, this) << "Refreshed allocation, lifetime=" << lifetime_secs;
660 // Send a success response with a LIFETIME attribute.
814 // Return the smaller of our default lifetime and the requested lifetime.
815 uint32_t lifetime = kDefaultAllocationTimeout / 1000; // convert to second local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast.c 908 u32 lifetime; local
926 lifetime = WPA_GET_BE32(pos);
930 lifetime, (lifetime - (u32) now.sec) / 86400);
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_fast.c 129 os_time_t lifetime = 0; local
210 "PAC-Key lifetime length %d",
215 lifetime = WPA_GET_BE32(pos);
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) {
493 /* PAC-Key lifetime in seconds (hard limit) */
499 * seconds (or fewer) of the lifetime remains
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp 194 Qualifiers::ObjCLifetime Lifetime;
199 Qualifiers::ObjCLifetime lifetime,
202 : Alignment(align), Size(size), Lifetime(lifetime),
226 if (chunk.Lifetime == Qualifiers::OCL_Strong)
228 if (chunk.Lifetime == Qualifiers::OCL_Weak)
279 // lifetime results in undefined behavior.
389 // If we have a lifetime qualifier, honor it for capture purposes.
391 Qualifiers::ObjCLifetime lifetime = local
393 if (lifetime) {
    [all...]
CGDecl.cpp 535 /// variable with lifetime.
538 Qualifiers::ObjCLifetime lifetime) {
539 switch (lifetime) {
662 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); local
663 if (!lifetime) {
674 // If we're emitting a value with lifetime, we have to do the
687 if (lifetime != Qualifiers::OCL_ExplicitNone)
704 if (lifetime == Qualifiers::OCL_Weak)
715 switch (lifetime) {
758 if (accessedByInit && lifetime == Qualifiers::OCL_Strong)
770 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); local
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 34 /// type, infer an expected lifetime. The type's ownership qualification
80 // We have a lifetime qualifier but no dominating property
82 // setting the property attribute according to the lifetime
715 // The lifetime implied by the property's attributes.
723 // None isn't a valid lifetime for an object ivar in ARC, and
784 /// property with no known lifetime of its own, using backing
1129 Qualifiers::ObjCLifetime lifetime = local
    [all...]
SemaDeclAttr.cpp 4573 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); local
    [all...]
SemaType.cpp 5408 Qualifiers::ObjCLifetime lifetime; local
    [all...]
SemaDecl.cpp 5489 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); local
10977 Qualifiers::ObjCLifetime lifetime; local
14032 Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime(); local
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx1y.cpp 243 namespace lifetime { namespace
246 constexpr int bad() { int &&n = dead(); n = 1; return n; } // expected-note {{assignment to temporary whose lifetime has ended}}
815 namespace Lifetime {
819 return r; // expected-note {{read of object outside its lifetime}}
830 *p = 123; // expected-note {{assignment to object outside its lifetime}}
847 *p[n] = 0; // expected-note 3{{assignment to object outside its lifetime}}
850 static_assert(h(0) == 0, ""); // ok, lifetime-extended
864 // its lifetime.
893 (void)+r; // expected-note {{outside its lifetime}}
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 366 plog(LLV_DEBUG, LOCATION, NULL, "(lifetime = %ld:%ld)\n",
367 (long)s->lifetime, (long)tsap->lifetime);
411 if ((tsap->lifetime > s->lifetime) ||
418 if (tsap->lifetime < s->lifetime)
419 s->lifetime = tsap->lifetime;
426 if ((tsap->lifetime != s->lifetime) |
2763 u_int32_t lifetime = htonl((u_int32_t)sa->lifetime); local
    [all...]
  /external/iputils/
rdisc.c 192 int lifetime; variable
297 lifetime = (3*max_adv_int);
345 lifetime = (3*max_adv_int);
509 advertise(&whereto, lifetime);
793 logtrace("ICMP %s from %s, lifetime %d\n",
899 advertise(&sin, lifetime);
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
tdls.c 106 u32 lifetime; member in struct:wpa_tdls_peer
640 * On TPK lifetime expiration, we have an option of either tearing down
650 wpa_printf(MSG_DEBUG, "TDLS: TPK lifetime expired for " MACSTR
658 wpa_printf(MSG_DEBUG, "TDLS: TPK lifetime expired for " MACSTR
1252 u32 lifetime; local
1345 u32 lifetime; local
1798 u32 lifetime = 0; local
2147 u32 lifetime = peer->lifetime; local
2186 u32 lifetime; local
2476 u32 lifetime; local
2626 struct wpa_tdls_timeoutie *lifetime = (struct wpa_tdls_timeoutie *) ie; local
    [all...]
  /frameworks/base/services/net/java/android/net/apf/
ApfFilter.java 94 ZERO_LIFETIME, // Received RA had 0 lifetime
357 // Minimum lifetime in packet
412 long lifetime = getUint32(mPacket, offset + 4); local
414 sb.append("DNS ").append(lifetime).append("s");
440 * Add a binary range of the packet that does not include a lifetime to mNonLifetimes.
443 * data not including a lifetime.
444 * @param lifetimeOffset offset from mPacket.position() to the next lifetime data.
445 * @param lifetimeLength length of the next lifetime data.
447 * a lifetime. This can be passed into the next invocation of this function
496 // Parse router lifetime
508 long lifetime; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java 734 private void notifyInterfaceDnsServerInfo(String iface, long lifetime, String[] addresses) {
735 invokeForAllObservers(o -> o.interfaceDnsServerInfo(iface, lifetime, addresses));
886 long lifetime; \/\/ Actually a 32-bit unsigned integer. local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ipsectypes.h 119 IPSEC_SA_LIFETIME0 lifetime; member in struct:IPSEC_PROPOSAL0_
301 IPSEC_SA_LIFETIME0 lifetime; member in struct:IPSEC_SA_BUNDLE0_
501 IPSEC_SA_LIFETIME0 lifetime; member in struct:IPSEC_SA_BUNDLE1_
  /external/clang/include/clang/AST/
Type.h 133 /// There is no lifetime qualification on this type.
150 /// Assigning into this object requires a lifetime extension.
321 /// True if the lifetime is neither None or ExplicitNone.
323 ObjCLifetime lifetime = getObjCLifetime(); local
324 return (lifetime > OCL_ExplicitNone);
327 /// True if the lifetime is either strong or weak.
329 ObjCLifetime lifetime = getObjCLifetime(); local
330 return (lifetime == OCL_Strong || lifetime == OCL_Weak);
451 // ObjC lifetime qualifiers must match exactly
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
Type.h 134 /// There is no lifetime qualification on this type.
151 /// Assigning into this object requires a lifetime extension.
322 /// True if the lifetime is neither None or ExplicitNone.
324 ObjCLifetime lifetime = getObjCLifetime(); local
325 return (lifetime > OCL_ExplicitNone);
328 /// True if the lifetime is either strong or weak.
330 ObjCLifetime lifetime = getObjCLifetime(); local
331 return (lifetime == OCL_Strong || lifetime == OCL_Weak);
466 // ObjC lifetime qualifiers must match exactly
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
Type.h 134 /// There is no lifetime qualification on this type.
151 /// Assigning into this object requires a lifetime extension.
322 /// True if the lifetime is neither None or ExplicitNone.
324 ObjCLifetime lifetime = getObjCLifetime(); local
325 return (lifetime > OCL_ExplicitNone);
328 /// True if the lifetime is either strong or weak.
330 ObjCLifetime lifetime = getObjCLifetime(); local
331 return (lifetime == OCL_Strong || lifetime == OCL_Weak);
466 // ObjC lifetime qualifiers must match exactly
    [all...]

Completed in 2030 milliseconds

12 3