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

1 2

  /development/ndk/platforms/android-3/include/linux/
timer.h 23 unsigned long expires; member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
android_power.h 23 int expires; member in struct:__anon1293
pkt_cls.h 129 __u64 expires; member in struct:tcf_t
  /external/chromium_org/content/common/
cookie_data.h 35 // Cookie expires param if any.
36 double expires; member in struct:content::CookieData
  /external/chromium_org/media/blink/
cache_util.cc 75 Time expires; local
77 Time::FromString(response.httpHeaderField("Expires").utf8().data(),
78 &expires) &&
79 date > Time() && expires > Time() &&
80 (expires - date) < kMinimumAgeForUsefulness) {
  /external/chromium_org/third_party/WebKit/public/platform/
WebCookie.h 43 : expires(0)
51 const WebString& path, double expires, bool httpOnly, bool secure, bool session)
56 , expires(expires)
67 double expires; member in struct:blink::WebCookie
  /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/chromium_org/third_party/WebKit/Source/platform/
Cookie.h 41 const String& path, double expires, bool httpOnly, bool secure,
47 , expires(expires)
58 double expires; member in struct:blink::Cookie
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
rest_api.py 84 expires = ndb.FloatProperty() variable in class:_AE_TokenStorage_
126 (scopes, service_account_id) -> (token, expires).
221 if ts is None or ts.expires < (time.time() +
226 ts = _AE_TokenStorage_(id=key, token=token, expires=expires_at)
  /external/chromium_org/chrome/browser/ui/webui/
certificate_viewer_webui.cc 152 base::Time issued, expires; local
154 if (x509_certificate_model::GetTimes(cert_hnd, &issued, &expires)) {
158 base::TimeFormatShortDateNumeric(expires));
351 base::Time issued, expires; local
352 if (x509_certificate_model::GetTimes(cert, &issued, &expires)) {
361 base::UTF16ToUTF8(base::TimeFormatShortDateAndTime(expires)) + " " +
  /external/chromium_org/extensions/browser/api/web_request/
web_request_api_helpers.h 68 scoped_ptr<std::string> expires; member in struct:extension_web_request_api_helpers::ResponseCookie
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceResponse.cpp 286 DEFINE_STATIC_LOCAL(const AtomicString, expiresHeader, ("expires", AtomicString::ConstructFromLiteral));
401 double ResourceResponse::expires() const function in class:blink::ResourceResponse
404 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("expires", AtomicString::ConstructFromLiteral));
  /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 114 private Date expires; field in class:CacheStrategy.Factory
146 } else if ("Expires".equalsIgnoreCase(fieldName)) {
147 expires = HttpDate.parse(value);
266 } else if (expires != null) {
270 long delta = expires.getTime() - servedMillis;
309 return cacheResponse.cacheControl().maxAgeSeconds() == -1 && expires == null;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CookieParser.js 261 return !("expires" in this._attributes || "max-age" in this._attributes);
291 expires: function()
293 return this._attributes["expires"];
325 // RFC 6265 indicates that the max-age attribute takes precedence over the expires attribute
331 if (this.expires())
332 return new Date(this.expires());
402 if (protocolCookie["expires"])
403 cookie.addAttribute("expires", protocolCookie["expires"]);
  /bionic/libc/dns/resolv/
res_cache.c 997 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 530 * value, the server will include a "Expires" header.
816 String expires = DateUtils.formatDate(new Date(time + mDocValidity), local
    [all...]
  /bionic/libc/kernel/uapi/linux/
pkt_cls.h 137 __u64 expires; member in struct:tcf_t
  /development/ndk/platforms/android-L/include/linux/
pkt_cls.h 137 __u64 expires; member in struct:tcf_t

Completed in 892 milliseconds

1 2