/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
MinSE.java | 18 * (Created by modifying Expires.java) 36 /** 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 [all...] |
SessionExpires.java | 30 public static final String NAME = "Session-Expires"; 32 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 valu [all...] |
SessionExpiresHeader.java | 15 public final static String NAME = "Session-Expires"; 19 public void setExpires(int expires) throws InvalidArgumentException;
|
/external/nist-sip/java/javax/sip/header/ |
ExpiresHeader.java | 6 String NAME = "Expires"; 9 void setExpires(int expires) throws InvalidArgumentException;
|
MinExpiresHeader.java | 4 String NAME = "Min-Expires";
|
ContactHeader.java | 9 void setExpires(int expires) throws InvalidArgumentException;
|
/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...] |
SubscriptionState.java | 52 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 { 72 if (expires < 0) 75 + "Exception, SubscriptionState, setExpires(), the expires parameter is < 0"); 76 this.expires = expires [all...] |
/external/webkit/LayoutTests/http/tests/cookies/script-tests/ |
simple-cookies-expired.js | 2 "This test checks that cookies are correctly set using Expires." 10 cookiesShouldBe("test=foobar; Expires=" + date.toGMTString(), "test=foobar"); 15 cookiesShouldBe("test2=foobar; Expires=" + date.toGMTString(), "");
|
/external/chromium/webkit/glue/ |
webcookie.cc | 10 : expires(0), 21 expires(c.ExpiryDate().ToDoubleT() * 1000), 29 double expires, bool http_only, bool secure, bool session) 34 expires(expires),
|
/external/webkit/LayoutTests/http/tests/cookies/resources/ |
clearCookies.cgi | 18 if ($cookie =~ /Expires/i) { 19 # Set the "Expires" field to UNIX epoch 20 $cookie =~ s/Expires *= *[^;]+/Expires=Thu, 01 Jan 1970 00:00:00 GMT/i; 24 $cookie .= "Expires=Thu, 01 Jan 1970 00:00:00 GMT";
|
/external/kernel-headers/original/linux/ |
timer.h | 12 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);
|
/external/chromium/net/data/url_request_unittest/ |
content-type-normalization.html.mock-http-headers | 5 Expires: Tue, 14 Nov 2006 19:23:58 GMT
|
/external/webkit/LayoutTests/http/tests/appcache/ |
access-via-redirect.php | 2 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
fallback-redirect.php | 5 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
|
manifest-redirect-2.php | 2 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
|
manifest-redirect.php | 2 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
|
print-uri.php | 3 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT\n");
|
resource-redirect-2.php | 2 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
|
resource-redirect.php | 2 header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
|
/external/webkit/LayoutTests/http/tests/cookies/ |
simple-cookies-expired-expected.txt | 1 This test checks that cookies are correctly set using Expires.
|
/external/webkit/Source/WebKit/chromium/public/ |
WebCookie.h | 45 : 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
|
/development/ndk/platforms/android-3/include/linux/ |
timer.h | 23 unsigned long expires; member in struct:timer_list 31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
timer.h | 23 unsigned long expires; member in struct:timer_list 31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
timer.h | 23 unsigned long expires; member in struct:timer_list 31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
|