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/webkit/Source/WebKit/chromium/public/
H A DWebCookie.h45 : expires(0)
53 const WebString& path, double expires, bool httpOnly, bool secure, bool session)
58 , expires(expires)
69 double expires; member in struct:WebKit::WebCookie
52 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/webkit/glue/
H A Dwebcookie.cc10 : expires(0),
21 expires(c.ExpiryDate().ToDoubleT() * 1000),
29 double expires, bool http_only, bool secure, bool session)
34 expires(expires),
27 WebCookie(const std::string& name, const std::string& value, const std::string& domain, const std::string& path, double expires, bool http_only, bool secure, bool session) argument
H A Dwebcookie.h20 const std::string& domain, const std::string& path, double expires,
36 // Cookie expires param if any.
37 double expires; member in struct:webkit_glue::WebCookie
/external/kernel-headers/original/linux/
H A Dtimer.h12 unsigned long expires; member in struct:timer_list
24 .expires = (_expires), \
61 extern int __mod_timer(struct timer_list *timer, unsigned long expires);
62 extern int mod_timer(struct timer_list *timer, unsigned long expires);
71 * timer interrupt at the ->expires point in the future. The
74 * The timer's ->expires, ->function (and if the handler uses it, ->data)
77 * Timers with an ->expires field in the past will be executed in the next
83 __mod_timer(timer, timer->expires);
H A Dandroid_power.h22 int expires; member in struct:__anon7390
/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/webkit/Source/WebCore/platform/
H A DCookie.h39 const String& path, double expires, bool httpOnly, bool secure,
45 , expires(expires)
56 double expires; member in struct:WebCore::Cookie
38 Cookie(const String& name, const String& value, const String& domain, const String& path, double expires, bool httpOnly, bool secure, bool session) argument
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_cookies.h51 time_t expires; member in struct:_Ewk_Cookie
H A Dewk_cookies.cpp115 c->expires = soup_date_to_time_t(cookie->expires);
/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/webkit/Source/WebCore/inspector/front-end/
H A DCookieParser.js190 expires: function(requestDate)
192 return this._attributes.expires ? new Date(this._attributes.expires) :
H A DHAREntry.js168 expires: cookie.expires(new Date(this._resource.startTime * 1000)),
/external/okhttp/src/main/java/libcore/net/http/
H A DResponseHeaders.java55 private Date expires; field in class:ResponseHeaders
143 expires = HttpDate.parse(value);
215 return expires;
292 } else if (expires != null) {
294 long delta = expires.getTime() - servedMillis;
316 return maxAgeSeconds == -1 && expires == null;
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DCacheResult.h49 // Returns the value of the expires header as milliseconds since the epoch.
50 int64 expires() const;
/external/nist-sip/java/javax/sip/message/
H A DMessage.java54 void setExpires(ExpiresHeader expires); argument

Completed in 3311 milliseconds

123