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

/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/webkit/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/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:__anon3145
H A Dpkt_cls.h145 __u64 expires; member in struct:tcf_t
/external/webkit/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/WebCore/platform/network/win/
H A DCookieJarCFNetWin.cpp153 double expires = (CFDateGetAbsoluteTime(CFHTTPCookieGetExpiratonDate(cookie)) + kCFAbsoluteTimeIntervalSince1970) * 1000; local
159 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));
/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.h413 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/webkit/WebCore/platform/network/
H A DResourceResponseBase.cpp256 DEFINE_STATIC_LOCAL(const AtomicString, expiresHeader, ("expires"));
403 double ResourceResponseBase::expires() const function in class:WebCore::ResourceResponseBase
408 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("expires"));
/external/chromium/net/base/
H A Dcookie_monster.h311 const base::Time& expires)
317 expiry_date_(expires),
303 CanonicalCookie(const std::string& name, const std::string& value, const std::string& path, bool secure, bool httponly, const base::Time& creation, const base::Time& last_access, bool has_expires, const base::Time& expires) argument
/external/iproute2/include/linux/
H A Dpkt_cls.h145 __u64 expires; member in struct:tcf_t

Completed in 204 milliseconds