Searched refs:expires (Results 1 - 25 of 70) sorted by relevance

123

/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...]
/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 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...]
H A DSessionExpiresHeader.java19 public void setExpires(int expires) throws InvalidArgumentException; argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCookie.h43 : 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
50 WebCookie(const WebString& name, const WebString& value, const WebString& domain, const WebString& path, double expires, bool httpOnly, bool secure, bool session) argument
/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
/external/chromium_org/content/common/
H A Dcookie_data.cc12 : expires(0),
23 expires(c.ExpiryDate().ToDoubleT() * 1000),
H A Dcookie_data.h35 // Cookie expires param if any.
36 double expires; member in struct:content::CookieData
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DExpiresParser.java64 Expires expires = new Expires();
76 expires.setExpires(delta);
77 return expires;
H A DSubscriptionStateParser.java94 } else if (value.equalsIgnoreCase("expires")) {
101 int expires = Integer.parseInt(value);
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/
H A DCookie.h41 const String& path, double expires, bool httpOnly, bool secure,
47 , expires(expires)
58 double expires; member in struct:blink::Cookie
40 Cookie(const String& name, const String& value, const String& domain, const String& path, double expires, bool httpOnly, bool secure, bool session) argument
/external/chromium_org/media/blink/
H A Dcache_util.cc75 Time expires; local
78 &expires) &&
79 date > Time() && expires > Time() &&
80 (expires - date) < kMinimumAgeForUsefulness) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DCookiesTable.js50 {id: "expires", title: WebInspector.UIString("Expires / Max-Age"), sortable: true, weight: 7},
146 var groupData = {name: item.folderName, value: "", domain: "", path: "", expires: "", size: this._totalSize(item.cookies), httpOnly: "", secure: ""};
214 if (cookie1.expires() && cookie2.expires())
215 return sortDirection * (cookie1.expires() - cookie2.expires());
216 return sortDirection * (cookie1.expires() ? 1 : -1);
225 case "expires": comparator = expiresCompare; break;
247 data.expires = WebInspector.UIString("N/A");
252 data.expires
[all...]
/external/dnsmasq/src/
H A Dlease.c96 lease->expires = (time_t)ei + now;
98 lease->expires = (time_t)0;
103 lease->expires = (time_t)ei;
191 ourprintf(&err, "%lu ", (unsigned long)lease->expires);
223 /* Set alarm for when the first lease expires + slop. */
225 if (lease->expires != 0 &&
226 (next_event == 0 || difftime(next_event, lease->expires + 10) > 0.0))
227 next_event = lease->expires + 10;
254 cache_add_dhcp_entry(lease->fqdn, &lease->addr, lease->expires);
257 cache_add_dhcp_entry(lease->hostname, &lease->addr, lease->expires);
[all...]
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);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DCacheStrategy.java114 private Date expires; field in class:CacheStrategy.Factory
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/chrome/browser/ui/webui/
H A Dcertificate_viewer_webui.cc152 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/content/renderer/
H A Drenderer_webcookiejar_impl.cc56 c.expires,
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DCookieJar.cpp96 webCookie.expires, webCookie.httpOnly, webCookie.secure, webCookie.session));
/external/nist-sip/java/javax/sip/message/
H A DMessage.java54 void setExpires(ExpiresHeader expires); argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCookieParser.js261 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"]);
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
H A Drest_api.py84 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)

Completed in 4319 milliseconds

123