Searched defs:expires (Results 1 - 25 of 46) sorted by relevance

12

/external/nist-sip/java/javax/sip/header/
H A DExpiresHeader.java9 void setExpires(int expires) throws InvalidArgumentException; argument
H A DContactHeader.java9 void setExpires(int expires) throws InvalidArgumentException; argument
H A DHeaderFactory.java73 ExpiresHeader createExpiresHeader(int expires) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DExpires.java52 /** expires field
54 protected int expires; field in class:Expires
71 return buffer.append(expires);
75 * Gets the expires value of the ExpiresHeader. This expires value is
81 * @return the expires value of the ExpiresHeader.
86 return expires;
90 * Sets the relative expires value of the ExpiresHeader.
91 * The expires value MUST be greater than zero and MUST be
94 * @param expires
100 setExpires(int expires) argument
[all...]
H A DMinExpires.java52 /** expires field
54 protected int expires; field in class:MinExpires
67 return Integer.toString(expires);
71 * Gets the expires value of the ExpiresHeader. This expires value is
74 * @return the expires value of the ExpiresHeader.
78 return expires;
82 * Sets the relative expires value of the ExpiresHeader.
83 * The expires value MUST be greater than zero and MUST be
86 * @param expires
93 setExpires(int expires) argument
[all...]
H A DSubscriptionState.java52 protected int expires; field in class:SubscriptionState
60 expires = -1;
65 * Sets the relative expires value of the SubscriptionStateHeader. The
66 * expires value MUST be greater than zero and MUST be less than 2**31.
68 * @param expires - the new expires value of this SubscriptionStateHeader.
71 public void setExpires(int expires) throws InvalidArgumentException { argument
72 if (expires < 0)
75 + "Exception, SubscriptionState, setExpires(), the expires parameter is < 0");
76 this.expires
[all...]
H A DHeaderFactoryExt.java212 * Creates a new SessionExpiresHeader based on the newly supplied expires value.
214 * @param expires - the new integer value of the expires.
215 * @throws InvalidArgumentException if supplied expires is less
220 public SessionExpiresHeader createSessionExpiresHeader(int expires) throws InvalidArgumentException ; argument
H A DHeaderFactoryImpl.java458 * Creates a new ExpiresHeader based on the newly supplied expires value.
460 * @param expires - the new integer value of the expires.
461 * @throws InvalidArgumentException if supplied expires is less
465 public ExpiresHeader createExpiresHeader(int expires) argument
467 if (expires < 0)
468 throw new InvalidArgumentException("bad value " + expires);
470 e.setExpires(expires);
606 * Creates a new MinSEHeader based on the newly supplied expires value.
608 * @param expires
618 createMinSEHeader(int expires) argument
1641 createSessionExpiresHeader(int expires) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DMinSE.java36 /** expires field
38 public int expires; field in class:MinSE
51 String retval = Integer.toString(expires); // seems overkill - but Expires did this.
66 * Gets the expires value of the ExpiresHeader. This expires value is
72 * @return the expires value of the ExpiresHeader.
78 return expires;
82 * Sets the relative expires value of the ExpiresHeader.
83 * The expires value MUST be greater than zero and MUST be
86 * @param expires
93 setExpires(int expires) argument
[all...]
H A DSessionExpiresHeader.java19 public void setExpires(int expires) throws InvalidArgumentException; argument
H A DSessionExpires.java32 public int expires; field in class:SessionExpires
42 * Gets the expires value of the SessionExpiresHeader. This expires value is
47 * @return the expires value of the ExpiresHeader.
53 return expires;
57 * Sets the relative expires value of the SessionExpiresHeader.
58 * The expires value MUST be greater than zero and MUST be
61 * @param expires - the new expires value
68 public void setExpires(int expires) throw argument
[all...]
/external/webrtc/webrtc/base/
H A Drtccertificate.cc31 int64_t expires = ssl_certificate().CertificateExpirationTime(); local
32 if (expires != -1)
33 return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
/external/toybox/toys/pending/
H A Ddumpleases.c30 uint32_t expires; member in struct:lease
59 exp = ntohl(lease_struct.expires) + written_time;
66 unsigned expires = exp - current_time; local
67 dt = expires / (24*60*60); expires %= (24*60*60);
68 hr = expires / (60*60); expires %= (60*60);
69 m = expires / 60; expires %= 60;
71 xprintf("%02u:%02u:%02u\n", hr, m, (unsigned)expires);
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DCacheStrategy.java105 private Date expires; field in class:CacheStrategy.Factory
139 expires = HttpDate.parse(value);
249 } else if (expires != null) {
253 long delta = expires.getTime() - servedMillis;
292 return cacheResponse.cacheControl().maxAgeSeconds() == -1 && expires == null;
/external/curl/lib/
H A Dcookie.h35 curl_off_t expires; /* expires = <this> */ member in struct:Cookie
/external/dnsmasq/src/
H A Dhelper.c44 time_t expires; member in struct:script_data
155 sprintf(daemon->dhcp_buff2, "%lu ", (unsigned long)data.expires);
366 buf->expires = lease->expires;
368 buf->remaining_time = (unsigned int)difftime(lease->expires, now);
H A Ddnsmasq.h415 time_t expires; /* lease expiry */ member in struct:dhcp_lease
/external/nist-sip/java/javax/sip/message/
H A DMessage.java54 void setExpires(ExpiresHeader expires); argument
/external/libnl/lib/idiag/
H A Didiag_msg_obj.c241 void idiagnl_msg_set_expires(struct idiagnl_msg *msg, uint32_t expires) argument
243 msg->idiag_expires = expires;
/external/iproute2/ip/
H A Diproute.c89 fprintf(stderr, " [ pref PREF ] [ expires TIME ]\n");
525 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
552 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
907 } else if (strcmp(*argv, "expires") == 0 ) {
908 __u32 expires; local
910 if (get_u32(&expires, *argv, 0))
911 invarg("\"expires\" value is invalid\n", *argv);
914 addattr32(&req.n, sizeof(req), RTA_EXPIRES, expires*hz);
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java208 entryFactory = EntryFactory.getFactory(keyStrength, expires(), evictsBySize());
269 boolean expires() { method in class:MapMakerInternalMap
1904 if (expires() && isExpired(entry)) {
2109 expirationQueue = map.expires()
2283 if (map.expires()) {
2426 } else if (map.expires() && map.isExpired(e)) {
3036 if (map.expires() && map.isExpired(entry)) {
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java320 boolean expires() { method in class:LocalCache
/external/iproute2/include/linux/
H A Dpkt_cls.h71 __u64 expires; member in struct:tcf_t
/external/libnl/include/linux-private/linux/
H A Dpkt_cls.h141 __u64 expires; member in struct:tcf_t
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java233 public Cookie(String name, String value, String expires) { argument
236 this.e = expires;
240 String fmt = "%s=%s; expires=%s";
309 * @param expires
310 * How many days until the cookie expires.
312 public void set(String name, String value, int expires) { argument
313 this.queue.add(new Cookie(name, value, Cookie.getHTTPTime(expires)));

Completed in 958 milliseconds

12