/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
GenericMapMaker.java | 70 * See {@link MapMaker#expiration}. 74 abstract GenericMapMaker<K0, V0> expiration(long duration, TimeUnit unit); method in class:GenericMapMaker
|
MapMaker.java | 110 * expiration comes). We also want to avoid removing an entry prematurely if the entry was set 188 MapMaker expiration(long duration, TimeUnit unit) { method in class:MapMaker 196 "expiration time of " + expirationMillis + " ns was already set");
|
/external/chromium/net/base/ |
host_cache.h | 26 Entry(int error, const AddressList& addrlist, base::TimeTicks expiration); 33 base::TimeTicks expiration; member in struct:net::HostCache::Entry
|
/external/wpa_supplicant_8/src/ap/ |
pmksa_cache_auth.h | 22 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
|
/external/chromium_org/chrome/browser/extensions/api/identity/ |
gaia_web_auth_flow.cc | 125 std::string expiration; local 136 expiration = it->second; 150 delegate_->OnGaiaFlowCompleted(access_token, expiration);
|
/external/guava/guava/src/com/google/common/collect/ |
GenericMapMaker.java | 121 * See {@link MapMaker#expiration}. 125 abstract GenericMapMaker<K0, V0> expiration(long duration, TimeUnit unit); method in class:GenericMapMaker
|
MapMaker.java | 54 * <li>time-based expiration of entries, measured since last access or last write 428 * {@link MapMaker#expiration} is provided by 435 MapMaker expiration(long duration, TimeUnit unit) { method in class:MapMaker 716 * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage [all...] |
MapMakerInternalMap.java | 182 * A listener that is invoked when an entry is removed due to expiration or garbage collection of 715 * Gets the entry expiration time in ns. 720 * Sets the entry expiration time in ns. 980 // null expiration 2321 long expiration = map.expiresAfterAccess() local [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
pmksa_cache.h | 20 os_time_t expiration; member in struct:rsn_pmksa_cache_entry
|
peerkey.h | 27 os_time_t expiration; member in struct:wpa_peerkey
|
/external/chromium/chrome/browser/extensions/ |
extensions_quota_service.h | 100 // come in). So, a bucket has an expiration to denote it has becomes stale. 116 // The time at which the token count and next expiration should be reset, 118 const base::TimeTicks& expiration() { return expiration_; } function in class:QuotaLimitHeuristic::Bucket
|
/external/chromium_org/extensions/browser/ |
quota_service.h | 118 // come in). So, a bucket has an expiration to denote it has becomes stale. 134 // The time at which the token count and next expiration should be reset, 136 const base::TimeTicks& expiration() { return expiration_; } function in class:extensions::QuotaLimitHeuristic::Bucket
|
/external/chromium_org/net/base/ |
expiring_cache.h | 24 const ExpirationType& expiration, 30 // Cache implementation where all entries have an explicit expiration policy. As 38 // ExpirationCompare, then the expression |comp(current, expiration)| shall 39 // return true iff |current| is still valid within |expiration|. 42 // monotonically increasing clock, for the expiration type. Because it's always 44 // sorted before |expiration|: 55 // Alternatively, there may be some more complex expiration criteria, at which 60 // const ComplexExpiration& expiration) const; 104 const ExpirationType& expiration() const { return it_->second.second; } function in class:net::ExpiringCache::Iterator 143 const ExpirationType& expiration) { [all...] |
/external/chromium_org/net/dns/ |
mdns_cache.cc | 128 // expiration. This allows clients to eagrely call CleanupRecords with 134 base::Time expiration = GetEffectiveExpiration(i->second); local 135 if (now >= expiration) { 140 if (next_expiration == base::Time() || expiration < next_expiration) { 141 next_expiration = expiration;
|
/external/chromium_org/ppapi/proxy/ |
flash_resource.cc | 35 base::TimeTicks expiration; member in struct:ppapi::proxy::__anon9853::LocalTimeZoneOffsetEntry 114 if (iter != cache.end() && now < iter->second.expiration) 126 cache_entry.expiration = now + expiration_delta;
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieManagerTest.java | 166 long expiration = 3000; local 168 date.setTime(date.getTime() + expiration); 186 Thread.sleep(expiration + 1000); // wait for cookie to expire
|
/external/chromium_org/cloud_print/gcp20/prototype/ |
print_job_handler.cc | 53 base::Time expiration; member in struct:PrintJobHandler::LocalPrintJobExtended 58 LocalPrintJobDraft(const std::string& ticket, const base::Time& expiration) 60 expiration(expiration) {} 64 base::Time expiration; member in struct:PrintJobHandler::LocalPrintJobDraft 196 static_cast<int>((draft->second.expiration - Time::Now()).InSeconds()); 271 job->second.expiration = 293 // TODO(maksymb): Use base::Time for expiration 296 base::Time expiration = jobs.at(id).expiration; local [all...] |
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
CookieManagerTest.java | 200 long expiration = 3000; local 202 date.setTime(date.getTime() + expiration); 220 Thread.sleep(expiration + 1000); // wait for cookie to expire
|
/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...] |
/external/chromium_org/remoting/webapp/ |
oauth2.js | 158 * @param {number} expiration Expiration time in milliseconds since epoch. 162 remoting.OAuth2.prototype.setAccessToken_ = function(token, expiration) { 163 // Offset expiration by 120 seconds so that we can guarantee that the token 172 'expiration': (expiration - (120 + 30)) * 1000 + Date.now() 183 * @return {{token: string, expiration: number}} The current access token, or 194 if (result && 'token' in result && 'expiration' in result) { 195 return /** @type {{token: string, expiration: number}} */ result; 199 return {'token': '', 'expiration': 0} [all...] |
/external/chromium_org/net/third_party/nss/ssl/ |
sslsnce.c | 866 /* override caller's expiration time, which uses client timeout 883 /* override caller's expiration time, which uses client timeout 1683 PRUint32 expiration = cache->mutexTimeout; local [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_registrar.c | 85 struct os_time expiration; member in struct:wps_uuid_pin 756 os_get_time(&p->expiration); 757 p->expiration.sec += timeout; 811 os_time_before(&pin->expiration, &now)) { [all...] |
/frameworks/base/services/java/com/android/server/ |
DevicePolicyManagerService.java | 189 if (DBG) Slog.v(TAG, "Sending password expiration notifications for action " 358 out.startTag(null, "password-expiration-timeout"); 360 out.endTag(null, "password-expiration-timeout"); 363 out.startTag(null, "password-expiration-date"); 365 out.endTag(null, "password-expiration-date"); 438 } else if ("password-expiration-timeout".equals(tag)) { 441 } else if ("password-expiration-date".equals(tag)) { 611 * Set an alarm for an upcoming event - expiration warning, expiration, or post-expiration 615 final long expiration = getPasswordExpirationLocked(null, policy.mUserHandle); local 1442 final long expiration = timeout > 0L ? (timeout + System.currentTimeMillis()) : 0L; local 2303 long expiration = timeout > 0L ? (timeout + System.currentTimeMillis()) : 0L; local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsProvider2.java | 216 * Default expiration duration for pre-authorized URIs. May be overridden from a secure 2164 long expiration = SystemClock.elapsedRealtime() + mPreAuthorizedUriDuration; local [all...] |
/prebuilts/sdk/tools/lib/ |
guava-10.0.1.jar | |