/external/llvm/bindings/python/llvm/ |
object.py | 58 # This is NOT OK. You perform a lookup after the object has expired. 61 print symbol.name # This raises because the object has expired. 188 self.expired = False 196 if self.expired: 197 raise Exception('Section instance has expired.') 204 if self.expired: 205 raise Exception('Section instance has expired.') 211 if self.expired: 212 raise Exception('Section instance has expired.') 219 if self.expired [all...] |
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
timeout-zero-expected.txt | 7 PASS error.message is "Timeout expired"
|
timeout-clear-watch-expected.txt | 7 PASS error.message is "Timeout expired"
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
ExpirableCache.java | 29 * An LRU cache in which all items can be marked as expired at a given time and it is possible to 30 * query whether a particular cached value is expired or not. 45 * We might also want to fetch the contact information again if the item is expired. 68 * The values will be still available from the cache, but they will be expired. 70 * If interested only in the value itself, not whether it is expired or not, one should use the 71 * {@link #getPossiblyExpired(Object)} method. If interested only in non-expired values, one should 77 * Since the underlying cache maps keys to cached values it can determine which items are expired 78 * and which are not, allowing for an implementation that evicts expired items before non expired 92 * value is expired [all...] |
/external/e2fsprogs/lib/et/test_cases/ |
simple.et | 10 "TGT expired" 16 "Ticket expired"
|
heimdal.et | 14 ec KDC_NAME_EXP, "Kerberos principal expired" 15 ec KDC_SERVICE_EXP, "Kerberos service expired" 16 ec KDC_AUTH_EXP, "Kerberos auth expired" 29 ec MK_AP_TGTEXP, "Kerberos TGT Expired" 32 ec RD_AP_EXP, "Kerberos ticket expired"
|
simple.c | 11 "TGT expired", 13 "Ticket expired",
|
heimdal.c | 10 "Kerberos principal expired", 11 "Kerberos service expired", 12 "Kerberos auth expired", 35 "Kerberos TGT Expired", 41 "Kerberos ticket expired",
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
timeout-zero.js | 13 shouldBe('error.message', '"Timeout expired"');
|
timeout-clear-watch.js | 13 shouldBe('error.message', '"Timeout expired"');
|
/external/webkit/LayoutTests/http/tests/cookies/ |
simple-cookies-expired.html | 10 <script src="script-tests/simple-cookies-expired.js"></script>
|
/packages/apps/Contacts/tests/src/com/android/contacts/util/ |
ExpirableCacheTest.java | 90 assertFalse("Should not be expired", mCache.getCachedValue("a").isExpired()); 92 assertTrue("Should be expired", mCache.getCachedValue("a").isExpired()); 99 assertFalse("Should not be expired", mCache.getCachedValue("a").isExpired()); 116 assertFalse("Should not be expired", cachedValue.isExpired()); 118 // If we expire all the values, the implicitly created value will also be marked as expired. 123 assertTrue("Should be expired", expiredCachedValue.isExpired());
|
/external/chromium/net/base/ |
dns_reload_timer.h | 15 // expired, returns true and resets the timer. See comments in
|
dns_reload_timer.cc | 32 // Check if the timer for the calling thread has expired. When no 34 bool Expired() { 95 return dns_timer->Expired();
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
Timeout.java | 35 * Return true if the timeout has already expired. 44 * If already expired, return 0.
|
/external/openssh/ |
auth-shadow.c | 52 * Check if specified account is expired. Returns 1 if account is expired, 70 logit("Account %.100s has expired", spw->sp_namp); 85 * Returns: 1 = password expired, 0 = password not expired 125 logit("User %.100s password has expired (root forced)", user); 130 logit("User %.100s password has expired (password aged)", user);
|
/development/ndk/platforms/android-9/arch-mips/include/sys/ |
_sigdefs.h | 78 __BIONIC_SIGDEF(VTALRM,28,"Virtual timer expired") 79 __BIONIC_SIGDEF(PROF,29,"Profiling timer expired") 93 __BIONIC_SIGDEF(VTALRM,26,"Virtual timer expired") 94 __BIONIC_SIGDEF(PROF,27,"Profiling timer expired")
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/sys/ |
_sigdefs.h | 78 __BIONIC_SIGDEF(VTALRM,28,"Virtual timer expired") 79 __BIONIC_SIGDEF(PROF,29,"Profiling timer expired") 93 __BIONIC_SIGDEF(VTALRM,26,"Virtual timer expired") 94 __BIONIC_SIGDEF(PROF,27,"Profiling timer expired")
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/sys/ |
_sigdefs.h | 78 __BIONIC_SIGDEF(VTALRM,28,"Virtual timer expired") 79 __BIONIC_SIGDEF(PROF,29,"Profiling timer expired") 93 __BIONIC_SIGDEF(VTALRM,26,"Virtual timer expired") 94 __BIONIC_SIGDEF(PROF,27,"Profiling timer expired")
|
/external/chromium/net/data/ssl/certificates/ |
README | 13 - mit.davidben.der : An expired MIT client certificate. 23 - expired_cert.pem : An expired certificate, used by test_server.cc.
|
/external/jmdns/src/javax/jmdns/impl/tasks/ |
RecordReaper.java | 15 * Periodically removes expired entries from the cache. 56 // Remove expired answers from the cache
|
/frameworks/support/volley/tests/src/com/android/volley/ |
CacheDispatcherTest.java | 82 // A non-expired cache hit posts a response and does not queue to the network. 92 // A soft-expired cache hit posts a response and queues to the network. 105 // An expired cache hit does not post a response and queues to the network.
|
/libcore/luni/src/main/java/java/net/ |
CookieStore.java | 25 * CookieStore, and retrieve cookies for every outgoing HTTP request.Expired 53 * Retrieves cookies that match the specified URI. Return not expired cookies. 67 * Get all cookies in cookie store which are not expired.
|
CookieStoreImpl.java | 74 i.remove(); // remove expired cookies 94 i.remove(); // remove expired cookies 110 i.remove(); // remove expired cookies
|
/libcore/luni/src/main/java/java/util/concurrent/ |
DelayQueue.java | 19 * when its delay has expired. The <em>head</em> of the queue is that 20 * <tt>Delayed</tt> element whose delay expired furthest in the 21 * past. If no delay has expired there is no head and <tt>poll</tt> 27 * returns the count of both expired and unexpired elements. 147 * if this queue has no elements with an expired delay. 150 * queue has no elements with an expired delay 168 * until an element with an expired delay is available on this queue. 208 * until an element with an expired delay is available on this queue, 213 * an expired delay becomes available 259 * <tt>poll</tt>, if no expired elements are available in the queue [all...] |