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

1 2 3 4 5 6 7 8 91011>>

  /ndk/docs/Programmers_Guide/html/
resize.js 25 function writeCookie(cookie, val, expiration)
28 if (expiration == null)
31 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
32 expiration = date.toGMTString();
34 document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/";
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
timerfd.h 48 /* Set next expiration time of interval timer source UFD to UTMR. If
50 absolute. Optionally return the old expiration time in OTMR. */
55 /* Return the next expiration time of UFD. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
timerfd.h 48 /* Set next expiration time of interval timer source UFD to UTMR. If
50 absolute. Optionally return the old expiration time in OTMR. */
55 /* Return the next expiration time of UFD. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
timerfd.h 48 /* Set next expiration time of interval timer source UFD to UTMR. If
50 absolute. Optionally return the old expiration time in OTMR. */
55 /* Return the next expiration time of UFD. */
  /developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofence.java 39 * @param expiration Geofence expiration duration.
43 long expiration, int transition) {
49 this.mExpirationDuration = expiration;
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofence.java 39 * @param expiration Geofence expiration duration.
43 long expiration, int transition) {
49 this.mExpirationDuration = expiration;
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
SimpleGeofence.java 39 * @param expiration Geofence expiration duration.
43 long expiration, int transition) {
49 this.mExpirationDuration = expiration;
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
session.py 101 self.expiration = session_expiration
170 gmt_expiration_time = time.gmtime(time.time() + (self.expiration * 60))
189 expiration=2880, # in minutes: 48 hours
204 self.expiration = expiration
238 exp_time = datetime.timedelta(seconds=self.expiration*60)
297 expiration=NoDefault,
311 the cookie expiration. Default 12 hours.
313 expiration:
334 if expiration is NoDefault
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
pmksa_cache.c 59 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
90 sec = pmksa->pmksa->expiration - now.sec;
152 entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
225 /* Add the new entry; order by expiration time */
229 if (pos->expiration > entry->expiration)
353 /* TODO: reorder entries based on expiration time? */
354 new_entry->expiration = old_entry->expiration;
485 "Index / AA / PMKID / expiration (in seconds) /
    [all...]
  /external/kernel-headers/original/uapi/linux/
time.h 36 struct timespec it_value; /* timer expiration */
  /external/libnfc-nci/src/udrv/include/
utimer.h 77 /**** Callback for timer expiration ****/
  /external/openssh/
auth-shadow.c 47 * For the account and password expiration functions, we assume the expiry
68 debug3("account expiration disabled");
123 debug3("password expiration disabled");
128 debug3("password expiration disabled");
  /external/wpa_supplicant_8/src/ap/
pmksa_cache_auth.h 22 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
pmksa_cache_auth.c 100 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
119 sec = pmksa->pmksa->expiration - now.sec;
202 /* Add the new entry; order by expiration time */
206 if (pos->expiration > entry->expiration)
280 entry->expiration = now.sec;
282 entry->expiration += session_timeout;
284 entry->expiration += dot11RSNAConfigPMKLifetime;
322 entry->expiration = old_entry->expiration;
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AbstractStatementRetriever.java 59 * {@code result} will contain the statements and the expiration time of this result. The statements
60 * are considered reliable until the expiration time.
73 * The retrieved statements and the expiration date.
84 * @return the expiration time in millisecond.
WebContent.java 37 * Returns the expiration time of the content as specified in the HTTP header.
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Credential.java 43 // Expiration date for these credentials.
44 public static final String EXPIRATION_COLUMN = "expiration";
68 long expiration) {
74 mExpiration = expiration;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
time.h 44 struct timespec it_value; /* timer expiration */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
time.h 44 struct timespec it_value; /* timer expiration */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
types.h 96 struct timespec it_value; /* Timer expiration */
timeb.h 97 struct timespec it_value; /* Timer expiration */
  /external/mdnsresponder/mDNSShared/
dnsextd.h 66 long expire; // expiration time, in seconds since epoch
101 mDNSs32 expire; // expiration, absolute, in seconds since epoch
  /development/samples/ApiDemos/res/xml/
device_admin_expiration.xml 18 <!-- This screen is shown for the "Password Expiration" header. -->
  /external/guava/guava/src/com/google/common/cache/
RemovalListener.java 25 * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage
  /external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java 185 * contains a non-null key and value, and the eviction and expiration queues are consistent
214 * Peeks into the cache's internals to verify that its expiration queue is consistent. Verifies
215 * that the next/prev links in the expiration queue are correct, and that the queue is ordered
216 * by expiration time.
431 assertEquals("Expiration queue must be empty by now", 0, writeQueueSize(segment));
432 assertEquals("Expiration queue must be empty by now", 0, accessQueueSize(segment));

Completed in 624 milliseconds

1 2 3 4 5 6 7 8 91011>>