HomeSort by relevance Sort by last modified time
    Searched refs:Expires (Results 1 - 13 of 13) 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 118 cookie_util::ParseCookieTime(pc.Expires()) : base::Time();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdtypes.h 182 WSD_EVENTING_EXPIRES *Expires;
199 WSD_EVENTING_EXPIRES *Expires;
218 WSD_EVENTING_EXPIRES *expires; member in struct:_RESPONSEBODY_GetStatus
223 WSD_EVENTING_EXPIRES *expires; member in struct:_RESPONSEBODY_Renew
229 WSD_EVENTING_EXPIRES *expires; member in struct:_RESPONSEBODY_Subscribe
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 33 import gov.nist.javax.sip.header.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/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_helpers.cc 87 // overrides 'Expires' attribute.
95 parsed_expiry_time = net::cookie_util::ParseCookieTime(cookie->Expires());
147 NullableEquals(a->expires.get(), b->expires.get()) &&
887 if (modification->expires.get())
888 modified |= cookie->SetExpires(*modification->expires);
908 if (filter->expires.get()) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 863 } else if (nextHeader instanceof ContactList || nextHeader instanceof Expires) {
    [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]

Completed in 344 milliseconds