HomeSort by relevance Sort by last modified time
    Searched full:expiration (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /development/scripts/app_engine_server/
app.yaml 9 expiration: 1d
  /external/webkit/WebKit/mac/Misc/
WebNSViewExtras.h 45 // passes expiration or the mouse moves less than the hysteresis before the mouseUp event,
48 withExpiration:(NSDate *)expiration
55 withExpiration:(NSDate *)expiration;
WebNSViewExtras.m 70 withExpiration:(NSDate *)expiration
88 untilDate:expiration
132 withExpiration:(NSDate *)expiration
135 withExpiration:expiration
  /external/guava/src/com/google/common/collect/
ExpirationTimer.java 22 * Timer used for entry expiration in MapMaker.
  /external/qemu/
shaper.c 55 int64_t expiration; member in struct:QueuedPacketRec_
77 packet->expiration = 0;
99 QueuedPacket packets; /* list of queued packets, ordered by expiration date */
142 if (packet->expiration > now)
153 shaper->block_until = shaper->packets->expiration;
233 packet->expiration = shaper->block_until;
241 if (node == NULL || node->expiration > packet->expiration )
249 qemu_mod_timer( shaper->timer, packet->expiration );
290 int64_t expiration; member in struct:SessionRec_
    [all...]
  /frameworks/base/docs/html/
app.yaml 31 # expiration: 1d
  /external/webkit/WebCore/loader/
CrossOriginPreflightResultCache.h 53 // FIXME: A better solution to holding onto the absolute expiration time might be
54 // to start a timer for the expiration delta that removes this from the cache when
  /external/wpa_supplicant/
pmksa_cache.c 94 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
125 sec = pmksa->pmksa->expiration - now.sec;
174 entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
233 /* Add the new entry; order by expiration time */
237 if (pos->expiration > entry->expiration)
332 /* TODO: reorder entries based on expiration time? */
333 new_entry->expiration = old_entry->expiration;
450 "Index / AA / PMKID / expiration (in seconds) /
    [all...]
pmksa_cache.h 26 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
pmksa_cache.c 99 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
130 sec = pmksa->pmksa->expiration - now.sec;
181 entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
240 /* Add the new entry; order by expiration time */
244 if (pos->expiration > entry->expiration)
340 /* TODO: reorder entries based on expiration time? */
341 new_entry->expiration = old_entry->expiration;
459 "Index / AA / PMKID / expiration (in seconds) /
    [all...]
peerkey.h 33 os_time_t expiration; member in struct:wpa_peerkey
pmksa_cache.h 26 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
  /external/clearsilver/man/man3/
cgi_cookie_set.3 45 time_str - expiration time string in the following format
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 233 long expiration = 3000; local
235 date.setTime(date.getTime() + expiration);
252 Thread.sleep(expiration + 1000); // wait for cookie to expire
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 139 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
144 * @return Expiration {@link Date}, or <tt>null</tt>.
154 * Sets expiration date.
363 /** Expiration {@link Date}. */
  /frameworks/base/location/java/android/location/
ILocationManager.aidl 54 long expiration, in PendingIntent intent);
  /dalvik/libcore/auth/src/main/java/org/apache/harmony/auth/internal/nls/
messages.properties 82 auth.40=expiration time is null
83 auth.41=An absolute expiration time can not be null for renewable tickets
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 76 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
81 * @return Expiration {@link Date}, or <tt>null</tt>.
  /external/guava/src/com/google/common/base/
Suppliers.java 107 * calls to {@code get()} return the cached value if the expiration time has
108 * not passed. After the expiration time, a new value is retrieved, cached,
  /external/quake/quake/src/WinQuake/data/
COMEXP.TXT 114 6. EFFECT OF TERMINATION OR EXPIRATION. Termination or
115 expiration of this Agreement, either by Id Software or
117 Upon expiration or earlier termination of this Agreement, Licensee
161 duties under this paragraph shall survive expiration or earlier
238 (2) years after the expiration or earlier termination of this
313 comply with the terms of this Agreement upon expiration or earlier
340 duties of Licensee upon termination or expiration of this Agreement
424 the expiration or earlier termination of this Agreement:
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 1138 long expiration = alert.getExpiration(); local
    [all...]
  /build/tools/droiddoc/templates/assets/
android-developer-reference.js 12 var expiration = date.toGMTString();
16 writeCookie(API_LEVEL_ENABLED_COOKIE, 1, null, expiration);
20 writeCookie(API_LEVEL_ENABLED_COOKIE, 0, null, expiration);
64 var expiration = date.toGMTString();
65 writeCookie(API_LEVEL_COOKIE, selectedLevel, null, expiration);
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 101 function writeCookie(cookie, val, section, expiration) {
104 if (expiration == null) {
106 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
107 expiration = date.toGMTString();
109 document.cookie = cookie_namespace+section+cookie+"="+val+"; expires="+expiration+"; path=/";
  /cts/tests/tests/location/src/android/location/cts/
LocationManagerTest.java 788 * Tests proximity alert when entering proximity, with no expiration
822 * @param expiration - expiration of proximity alert
824 private void doTestEnterProximity(long expiration) throws Exception {
827 registerProximityListener(0, 0, 1000, expiration);
846 long expiration) {
848 mManager.addProximityAlert(latitude, longitude, radius, expiration, mPendingIntent);
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 111 ATTRIBUTE Expiration 21 date
240 # uncomment these two lines to turn account expiration on
243 #VALUE Server-Config Password-Expiration 30

Completed in 208 milliseconds

1 2 3 4 5