HomeSort by relevance Sort by last modified time
    Searched refs:Expires (Results 1 - 14 of 14) sorted by null

  /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...]
NameMap.java 159 putNameMap(EXPIRES, Expires.class.getName()); //41
HeaderFactoryImpl.java 458 * 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)
467 if (expires < 0)
468 throw new InvalidArgumentException("bad value " + expires);
469 Expires e = new Expires();
470 e.setExpires(expires);
    [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;
  /external/chromium_org/net/cookies/
parsed_cookie.h 44 const std::string& Expires() const { return pairs_[expires_index_].second; }
64 bool SetExpires(const std::string& expires);
canonical_cookie.cc 198 // Try the Expires attribute.
199 if (pc.HasExpires() && !pc.Expires().empty()) {
201 base::Time parsed_expiry = cookie_util::ParseCookieTime(pc.Expires());
cookie_monster_store_test.cc 116 cookie_util::ParseCookieTime(pc.Expires()) : base::Time();
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 33 import gov.nist.javax.sip.header.Expires;
    [all...]
  /external/chromium/net/base/
cookie_monster_store_test.cc 92 CookieMonster::ParseCookieTime(pc.Expires()) : base::Time();
cookie_monster.h 709 const std::string& Expires() const { return pairs_[expires_index_].second; }
    [all...]
cookie_monster.cc 294 // Try the Expires attribute.
296 return CookieMonster::ParseCookieTime(pc.Expires());
432 // If the cookie attribute came in in quotes (ex expires="XXX"), the quotes
    [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 326 \item \verb|expires| is time in seconds. Flow label will be kept at least
388 Label S Owner Users Linger Expires Dst Opt
399 \item \verb|Expires| is time until expiration of the label in seconds. It may
414 be reused before path state expires and all the intermediate
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_helpers.cc 86 // overrides 'Expires' attribute.
94 parsed_expiry_time = net::cookie_util::ParseCookieTime(cookie->Expires());
146 NullableEquals(a->expires.get(), b->expires.get()) &&
876 if (modification->expires.get())
877 modified |= cookie->SetExpires(*modification->expires);
897 if (filter->expires.get()) {
899 cookie->HasExpires() ? cookie->Expires() : std::string();
900 if (actual_value != *filter->expires)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 863 } else if (nextHeader instanceof ContactList || nextHeader instanceof Expires) {
    [all...]

Completed in 571 milliseconds