Searched refs:expiration (Results 1 - 25 of 72) sorted by relevance

123

/external/tpm2/
H A DPolicySecret.c17 // TPM_RC_EXPIRED expiration indicates a time in the past
21 // TPM_RC_VALUE input policyID or expiration does not match the internal data in policy
33 UINT32 expiration = (in->expiration < 0) local
34 ? -(in->expiration) : in->expiration;
46 if(expiration != 0)
47 authTimeout = expiration * 1000 + session->startTime;
69 // Create ticket and timeout buffer if in->expiration < 0 and this is not
72 // when expiration i
[all...]
H A DPolicySigned.c16 // TPM_RC_EXPIRED expiration indicates a time in the past or expiration is non-zero but no
24 // TPM_RC_VALUE input policyID or expiration does not match the internal data in policy
38 UINT32 expiration = (in->expiration < 0) local
39 ? -(in->expiration) : in->expiration;
50 if(expiration != 0)
51 authTimeout = expiration * 1000 + session->startTime;
64 // aHash := hash ( nonceTPM | expiration | cpHash
[all...]
H A DPolicySecret_fp.h18 INT32 expiration; member in struct:__anon27148
H A DPolicySigned_fp.h18 INT32 expiration; member in struct:__anon27150
H A DMarshal_PolicySecret.c59 result = INT32_Unmarshal(&target->expiration, buffer, size);
H A DMarshal_PolicySigned.c59 result = INT32_Unmarshal(&target->expiration, buffer, size);
/external/robolectric-shadows/shadows/framework/src/main/java/android/webkit/
H A DRoboCookieManager.java191 Date expiration = null;
197 expiration = getExpiration(field);
209 if (expiration == null || expiration.compareTo(new Date()) >= 0) {
210 cookies.add(new Cookie(hostname, isSecure, cookie, expiration));
260 public Cookie(String hostname, boolean isSecure, String cookie, Date expiration) { argument
263 mExpiration = expiration;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dpmksa_cache_auth.c115 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
134 sec = pmksa->pmksa->expiration - now.sec;
228 /* Add the new entry; order by expiration time */
232 if (pos->expiration > entry->expiration)
343 entry->expiration = now.sec;
345 entry->expiration += session_timeout;
347 entry->expiration += dot11RSNAConfigPMKLifetime;
406 entry->expiration = old_entry->expiration;
[all...]
H A Dpmksa_cache_auth.h22 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
/external/wpa_supplicant_8/src/ap/
H A Dpmksa_cache_auth.c115 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
134 sec = pmksa->pmksa->expiration - now.sec;
228 /* Add the new entry; order by expiration time */
232 if (pos->expiration > entry->expiration)
343 entry->expiration = now.sec;
345 entry->expiration += session_timeout;
347 entry->expiration += dot11RSNAConfigPMKLifetime;
406 entry->expiration = old_entry->expiration;
[all...]
H A Dpmksa_cache_auth.h22 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dpmksa_cache_auth.c115 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
134 sec = pmksa->pmksa->expiration - now.sec;
228 /* Add the new entry; order by expiration time */
232 if (pos->expiration > entry->expiration)
343 entry->expiration = now.sec;
345 entry->expiration += session_timeout;
347 entry->expiration += dot11RSNAConfigPMKLifetime;
406 entry->expiration = old_entry->expiration;
[all...]
H A Dpmksa_cache_auth.h22 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
/external/skia/infra/bots/recipe_modules/skia_swarming/
H A Dapi.py129 extra_args=None, expiration=None, hard_timeout=None, io_timeout=None,
140 expiration: int. Task will expire if not picked up within this time.
162 swarming_task.expiration = (
163 expiration if expiration else DEFAULT_TASK_EXPIRATION)
190 # expiration, time outs, bot crashes or task cancelations.
/external/skqp/infra/bots/recipe_modules/skia_swarming/
H A Dapi.py129 extra_args=None, expiration=None, hard_timeout=None, io_timeout=None,
140 expiration: int. Task will expire if not picked up within this time.
162 swarming_task.expiration = (
163 expiration if expiration else DEFAULT_TASK_EXPIRATION)
190 # expiration, time outs, bot crashes or task cancelations.
/external/autotest/site_utils/
H A Djob_directories.py37 expiration = job_time + datetime.timedelta(days=age_limit)
38 return datetime.datetime.now() >= expiration
139 timestamp is to be used to determine expiration in
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dpmksa_cache.c62 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
93 sec = pmksa->pmksa->expiration - now.sec;
159 entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
247 /* Add the new entry; order by expiration time */
251 if (pos->expiration > entry->expiration)
369 os_time_t old_expiration = old_entry->expiration;
380 /* TODO: reorder entries based on expiration time? */
381 new_entry->expiration = old_expiration;
547 "Index / AA / PMKID / expiration (i
[all...]
H A Dpmksa_cache.h20 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
/external/wpa_supplicant_8/src/rsn_supp/
H A Dpmksa_cache.c62 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
93 sec = pmksa->pmksa->expiration - now.sec;
159 entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
247 /* Add the new entry; order by expiration time */
251 if (pos->expiration > entry->expiration)
369 os_time_t old_expiration = old_entry->expiration;
380 /* TODO: reorder entries based on expiration time? */
381 new_entry->expiration = old_expiration;
547 "Index / AA / PMKID / expiration (i
[all...]
H A Dpmksa_cache.h20 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dpmksa_cache.c62 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
93 sec = pmksa->pmksa->expiration - now.sec;
159 entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
247 /* Add the new entry; order by expiration time */
251 if (pos->expiration > entry->expiration)
369 os_time_t old_expiration = old_entry->expiration;
380 /* TODO: reorder entries based on expiration time? */
381 new_entry->expiration = old_expiration;
547 "Index / AA / PMKID / expiration (i
[all...]
H A Dpmksa_cache.h20 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-reference.js14 var expiration = date.toGMTString();
18 writeCookie(API_LEVEL_ENABLED_COOKIE, 1, null, expiration);
22 writeCookie(API_LEVEL_ENABLED_COOKIE, 0, null, expiration);
66 var expiration = date.toGMTString();
67 writeCookie(API_LEVEL_COOKIE, selectedLevel, null, expiration);
H A Ddoclava-developer-docs.js120 function writeCookie(cookie, val, section, expiration) {
123 if (expiration == null) {
125 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
126 expiration = date.toGMTString();
128 document.cookie = cookie_namespace + section + cookie + "=" + val + "; expires=" + expiration+"; path=/";
/external/skia/infra/bots/recipe_modules/swarming/
H A Dapi.py410 expiration=self.default_expiration,
456 '--expiration', str(task.expiration),
797 env, priority, shards, buildername, buildnumber, expiration,
835 expiration: number of schedule until the task shouldn't even be run if it
864 self.expiration = expiration

Completed in 519 milliseconds

123