HomeSort by relevance Sort by last modified time
    Searched refs:Expires (Results 1 - 9 of 9) 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/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.h 266 const std::string& Expires() const { return pairs_[expires_index_].second; }
311 const base::Time& expires)
317 expiry_date_(expires),
cookie_monster.cc 161 // If the cookie attribute came in in quotes (ex expires="XXX"), the quotes
377 // Try the Expires attribute.
379 return CookieMonster::ParseCookieTime(pc.Expires());
    [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/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 859 } else if (nextHeader instanceof ContactList || nextHeader instanceof Expires) {
    [all...]

Completed in 62 milliseconds