Searched refs:expire (Results 1 - 25 of 29) sorted by relevance

12

/external/smack/src/org/xbill/DNS/
H A DRRSIGRecord.java35 * @param expire The time at which the signature expires
43 Date expire, Date timeSigned, int footprint, Name signer,
46 super(name, Type.RRSIG, dclass, ttl, covered, alg, origttl, expire,
42 RRSIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl, Date expire, Date timeSigned, int footprint, Name signer, byte [] signature) argument
H A DSIGRecord.java35 * @param expire The time at which the signature expires
43 Date expire, Date timeSigned, int footprint, Name signer,
46 super(name, Type.SIG, dclass, ttl, covered, alg, origttl, expire,
42 SIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl, Date expire, Date timeSigned, int footprint, Name signer, byte [] signature) argument
H A DSOARecord.java18 private long serial, refresh, retry, expire, minimum; field in class:SOARecord
36 * @param expire The amount of time until a secondary expires a zone
41 long serial, long refresh, long retry, long expire, long minimum)
49 this.expire = checkU32("expire", expire);
60 expire = in.readU32();
71 expire = st.getTTLLike();
90 sb.append(expire);
91 sb.append("\t; expire\
40 SOARecord(Name name, int dclass, long ttl, Name host, Name admin, long serial, long refresh, long retry, long expire, long minimum) argument
[all...]
H A DSIGBase.java22 protected Date expire, timeSigned; field in class:SIGBase
32 long origttl, Date expire, Date timeSigned, int footprint, Name signer,
44 this.expire = expire;
57 expire = new Date(1000 * in.readU32());
76 expire = FormattedTime.parse(st.getString());
97 sb.append (FormattedTime.format(expire));
148 return expire;
186 out.writeU32(expire.getTime() / 1000);
31 SIGBase(Name name, int type, int dclass, long ttl, int covered, int alg, long origttl, Date expire, Date timeSigned, int footprint, Name signer, byte [] signature) argument
H A DCache.java32 long expire = (System.currentTimeMillis() / 1000) + ttl;
33 if (expire < 0 || expire > Integer.MAX_VALUE)
35 return (int)expire;
42 int expire; field in class:Cache.CacheRRset
48 this.expire = limitExpire(rec.getTTL(), maxttl);
56 this.expire = limitExpire(rrset.getTTL(), maxttl);
62 return (now >= expire);
84 int expire; field in class:Cache.NegativeElement
96 this.expire
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_hashlimit.h31 __u32 expire; /* when do entries expire? */ member in struct:hashlimit_cfg
55 __u32 expire; /* when do entries expire? */ member in struct:hashlimit_cfg1
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_hashlimit.h26 u_int32_t expire; /* when do entries expire? */ member in struct:hashlimit_cfg
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DSubscribeOptionFields.java53 expire, enum constant in enum:SubscribeOptionFields
H A DSubscribeForm.java120 * Get the time at which the leased subscription will expire, or has expired.
126 String dateTime = getFieldValue(SubscribeOptionFields.expire);
140 * Sets the time at which the leased subscription will expire, or has expired.
142 * @param expire The expiry date
144 public void setExpiry(Date expire) argument
146 addField(SubscribeOptionFields.expire, FormField.TYPE_TEXT_SINGLE);
147 setAnswer(SubscribeOptionFields.expire.getFieldName(), StringUtils.formatXEP0082Date(expire));
/external/llvm/bindings/python/llvm/
H A Dobject.py38 objects that "expire" but are still active from a dynamic language.
141 last.expire()
144 last.expire()
169 last.expire()
172 last.expire()
256 last.expire()
259 last.expire()
275 def expire(self): member in class:Section
333 The returned Section instance does not expire, unlike Sections that are
351 def expire(sel member in class:Symbol
423 def expire(self): member in class:Relocation
[all...]
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.h66 long expire; // expiration time, in seconds since epoch member in struct:RRTableElem
101 mDNSs32 expire; // expiration, absolute, in seconds since epoch member in struct:LLQEntry
H A Ddnsextd.c850 hr = ((ptr->expire - now.tv_sec) / 60) / 60;
851 min = ((ptr->expire - now.tv_sec) / 60) % 60;
852 sec = (ptr->expire - now.tv_sec) % 60;
1352 if (DeleteAll || (*ptr)->expire - now.tv_sec < 0)
1437 (*rptr)->expire = tv.tv_sec + (unsigned)lease;
1458 tmp->expire = tv.tv_sec + (unsigned)lease;
1666 if (e->expire < t.tv_sec) return 0;
1667 else return e->expire - t.tv_sec;
2021 if ((*e)->expire < t.tv_sec) DeleteLLQ(d, *e);
2108 e->expire
[all...]
/external/iptables/extensions/
H A Dlibxt_hashlimit.c42 "[--hashlimit-htable-expire] after which time are idle entries expired?\n",
80 " --hashlimit-htable-expire after which time are idle entries expired?\n"
100 {.name = "hashlimit-htable-expire", .id = O_HTABLE_EXPIRE,
102 XTOPT_POINTER(s, cfg.expire)},
133 {.name = "hashlimit-htable-expire", .id = O_HTABLE_EXPIRE,
135 XTOPT_POINTER(s, cfg.expire)},
185 r->cfg.expire = XT_HASHLIMIT_EXPIRE;
196 info->cfg.expire = XT_HASHLIMIT_EXPIRE;
208 info->cfg.expire = XT_HASHLIMIT_EXPIRE;
374 if (r->cfg.expire !
[all...]
/external/dhcpcd/
H A Dipv6rs.c291 struct timeval expire; local
539 timerclear(&rao->expire);
541 expire.tv_sec = lifetime;
542 expire.tv_usec = 0;
543 timeradd(&rap->received, &expire, &rao->expire);
685 struct timeval now, lt, expire, next; local
701 timeradd(&rap->received, &lt, &expire);
702 if (timercmp(&now, &expire, >)) {
714 timersub(&expire,
[all...]
H A Ddhcpcd.h87 struct timeval expire; member in struct:ra_opt
/external/kernel-headers/original/linux/sunrpc/
H A Dauth.h63 unsigned long expire; /* cache expiry interval */ member in struct:rpc_cred_cache
/external/chromium_org/chrome/browser/resources/file_manager/common/js/
H A Dutil.js835 expire: Date.now() + (opt_lifetime || util.AppCache.LIFETIME)
886 keys.sort(function(a, b) { return map[a].expire > map[b].expire });
892 map[keys[obsolete]].expire < cutoff) {
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp.c706 time_t expire = now + UPNP_SUBSCRIBE_SEC; local
728 s->timeout_time = expire;
763 time_t expire = now + UPNP_SUBSCRIBE_SEC; local
769 s->timeout_time = expire;
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp.c706 time_t expire = now + UPNP_SUBSCRIBE_SEC; local
728 s->timeout_time = expire;
763 time_t expire = now + UPNP_SUBSCRIBE_SEC; local
769 s->timeout_time = expire;
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp.c706 time_t expire = now + UPNP_SUBSCRIBE_SEC; local
728 s->timeout_time = expire;
763 time_t expire = now + UPNP_SUBSCRIBE_SEC; local
769 s->timeout_time = expire;
/external/mdnsresponder/mDNSCore/
H A DuDNS.c65 if (rr->expire && rr->refreshCount < MAX_UPDATE_REFRESH_COUNT)
67 mDNSs32 remaining = rr->expire - m->timenow;
77 rr->ThisAPInterval/mDNSPlatformOneSecond, (rr->expire - m->timenow)/mDNSPlatformOneSecond, ARDisplayString(m, rr));
83 rr->ThisAPInterval/mDNSPlatformOneSecond, (rr->expire - m->timenow)/mDNSPlatformOneSecond, ARDisplayString(m, rr));
88 rr->expire = 0;
796 q->expire = m->timenow + lease;
824 q->expire = m->timenow + ((mDNSs32)llq->llqlease * mDNSPlatformOneSecond);
2567 rr->expire = 0; // Indicate that we have no active registration any more
3537 mDNSs32 expire = m->timenow + (mDNSs32)lease * mDNSPlatformOneSecond; local
3555 if (rptr->expire
[all...]
H A DDNSCommon.c193 rd->soa.serial, rd->soa.refresh, rd->soa.retry, rd->soa.expire, rd->soa.min);
1069 rr->expire = 0;
1125 rdb->soa.expire +
1179 b1->soa.expire == b2->soa.expire &&
1673 ptr = putVal32(ptr, rdb->soa.expire);
2229 rdb->soa.expire = (mDNSu32) ((mDNSu32)ptr[0x0C] << 24 | (mDNSu32)ptr[0x0D] << 16 | (mDNSu32)ptr[0x0E] << 8 | ptr[0x0F]);
H A DmDNSEmbeddedAPI.h723 mDNSu32 expire; // Time in seconds that a slave holds on to old data while replication attempts remain unsuccessful variable
1240 mDNSs32 expire; // In platform time units: expiration of lease (-1 for static) member in struct:AuthRecord_struct
1557 mDNSs32 expire; // ticks (absolute) member in struct:DNSQuestion_struct
H A DmDNS.c922 rr->expire = 0; // Forget about all the leases, start fresh
1168 rr->expire = 0;
3233 // If the interface does not come back in time, the cache record will expire naturally
3446 // of changing DNS servers. When the cache entry is about to expire, we will resend the question and
3494 if (threshhold - RRExpireTime(rr) >= 0) // If we have records about to expire within a second
3730 // When a cache record is about to expire, we expect to do four queries at 80-82%, 85-87%, 90-92% and
4200 // Called from mDNS_Execute() to expire stale proxy records
5395 if (ar->expire && ar->expire - now > mDNSPlatformOneSecond*4)
5397 mDNSs32 t = ar->expire
[all...]
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex298 #define IPV6_FL_A_RENEW 2 /* Update expire time */

Completed in 576 milliseconds

12