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

1 2 3 4 5 6 7

  /external/webrtc/webrtc/base/
rtccertificate.cc 30 uint64_t RTCCertificate::Expires() const {
31 int64_t expires = ssl_certificate().CertificateExpirationTime(); local
32 if (expires != -1)
33 return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
39 return Expires() <= now;
  /external/nist-sip/java/gov/nist/javax/sip/header/
Expires.java 34 * Expires SIP Header.
43 public class Expires
52 /** expires field
54 protected int expires; field in class:Expires
58 public 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;
    [all...]
MinExpires.java 52 /** 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 - the new expires value of this ExpiresHeade
    [all...]
SubscriptionState.java 52 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 {
72 if (expires < 0)
75 + "Exception, SubscriptionState, setExpires(), the expires parameter is < 0");
76 this.expires = expires
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
MinSE.java 18 * (Created by modifying Expires.java)
36 /** 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
    [all...]
SessionExpires.java 30 public static final String NAME = "Session-Expires";
32 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 valu
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ExpiresParser.java 33 * Parser for SIP Expires Parser. Converts from SIP Date to the
64 Expires expires = new Expires(); local
68 lexer.match(TokenTypes.EXPIRES);
76 expires.setExpires(delta);
77 return expires;
SubscriptionStateParser.java 94 } else if (value.equalsIgnoreCase("expires")) {
101 int expires = Integer.parseInt(value); local
102 subscriptionState.setExpires(expires);
145 "Subscription-State: pending;reason=probation;expires=36\n",
146 "Subscription-State: pending;retry-after=10;expires=36\n",
  /external/toybox/toys/pending/
dumpleases.c 30 uint32_t expires; member in struct:lease
46 xprintf("Mac Address IP Address Host Name Expires %s\n", (toys.optflags & FLAG_a) ? "at" : "in");
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
    [all...]
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
workqueues.h 32 unsigned long expires; member in struct:timer_list
  /external/curl/lib/
cookie.h 35 curl_off_t expires; /* expires = <this> */ member in struct:Cookie
  /device/google/contexthub/firmware/os/core/
timer.c 43 uint64_t expires; /* time of next expiration */ member in struct:Timer
116 uint64_t nextTimer, expires; local
132 if ((!tim->useRtc && tim->expires <= timGetTime()) || (tim->useRtc && tim->expires <= rtcGetTime())) {
135 tim->expires += tim->period;
151 expires = tim->expires - rtcGetTime() + timGetTime();
153 expires = tim->expires;
154 if (!nextTimer || nextTimer > expires)
    [all...]
  /external/dnsmasq/src/
helper.c 44 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);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheStrategy.java 71 if (response.header("Expires") != null
105 private Date expires; field in class:CacheStrategy.Factory
138 } else if ("Expires".equalsIgnoreCase(fieldName)) {
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/wayland/src/
event-loop.c 175 uint64_t expires; local
178 len = read(source->fd, &expires, sizeof expires);
179 if (!(len == -1 && errno == EAGAIN) && len != sizeof expires)
  /frameworks/base/core/java/android/webkit/
CacheManager.java 55 long expires; field in class:CacheManager.CacheResult
107 return expires;
  /external/iproute2/ip/
iproute.c 92 fprintf(stderr, " [ pref PREF ] [ expires TIME ]\n");
520 fprintf(fp, "expires %dsec ", ci->rta_expires/hz);
548 fprintf(fp, "expires %dsec ", ci->rta_expires/hz);
943 } else if (strcmp(*argv, "expires") == 0) {
944 __u32 expires; local
947 if (get_u32(&expires, *argv, 0))
948 invarg("\"expires\" value is invalid\n", *argv);
949 addattr32(&req.n, sizeof(req), RTA_EXPIRES, expires);
    [all...]
  /bionic/libc/dns/resolv/
res_cache.c 1059 time_t expires; /* time_t when the entry isn't valid any more */ member in struct:Entry
    [all...]
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 484 * value, the server will include a "Expires" header.
765 String expires = DateUtils.formatDate(new Date(time + mDocValidity), local
767 response.addHeader("Expires", expires);
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 930 ExpiresHeader expires = (ExpiresHeader) response.getHeader(ExpiresHeader.NAME); local
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 320 boolean expires() { method in class:LocalCache
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 208 entryFactory = EntryFactory.getFactory(keyStrength, expires(), evictsBySize());
269 boolean expires() { method in class:MapMakerInternalMap
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 101 assertFalse(map.expires());
459 if (map.expires()) {
485 if (map.expires()) {
    [all...]
  /external/libnl/include/linux-private/linux/
pkt_cls.h 141 __u64 expires; member in struct:tcf_t
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
pkt_cls.h 141 __u64 expires; member in struct:tcf_t

Completed in 1135 milliseconds

1 2 3 4 5 6 7