Searched defs:isDestroyed (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/auth/src/main/java/javax/security/auth/
H A DDestroyable.java41 boolean isDestroyed(); method in interface:Destroyable
/dalvik/libcore/security/src/test/java/tests/api/javax/security/auth/
H A DDestroyableTest.java40 * @tests javax.security.auth.Destroyable#isDestroyed()
52 method = "isDestroyed",
59 assertFalse(md.isDestroyed());
61 assertTrue(md.isDestroyed());
78 public boolean isDestroyed() { method in class:DestroyableTest.myDestroyable
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThreadGroup.java78 private boolean isDestroyed; field in class:ThreadGroup
214 if (!isDestroyed) {
239 if (!isDestroyed) {
305 if (this.isDestroyed) {
331 this.isDestroyed = true;
347 if (isDaemon && !isDestroyed && numThreads == 0) {
540 public synchronized boolean isDestroyed() { method in class:ThreadGroup
541 return isDestroyed;
/dalvik/libcore/security/src/main/java/java/security/
H A DKeyStore.java1223 private boolean isDestroyed = false; field in class:KeyStore.PasswordProtection
1247 if (isDestroyed) {
1260 isDestroyed = true;
1273 public synchronized boolean isDestroyed() { method in class:KeyStore.PasswordProtection
1274 return isDestroyed;

Completed in 6 milliseconds