HomeSort by relevance Sort by last modified time
    Searched defs:interrupted (Results 1 - 21 of 21) sorted by null

  /dalvik/vm/native/
java_lang_VMThread.c 119 * static boolean interrupted()
121 * Determine if the current thread has been interrupted. Clears the flag.
127 bool interrupted; local
131 interrupted = self->interrupted;
132 self->interrupted = false;
133 RETURN_BOOLEAN(interrupted);
139 * Determine if the specified thread has been interrupted. Does not clear
147 bool interrupted; local
152 interrupted = thread->interrupted
    [all...]
  /libcore/luni/src/main/java/java/lang/
VMThread.java 34 static native boolean interrupted(); method in class:VMThread
Thread.java 821 * @see Thread#interrupted
848 public static boolean interrupted() { method in class:Thread
849 return VMThread.interrupted();
886 * @see Thread#interrupted
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 66 volatile boolean interrupted = false; field in class:AbstractInterruptibleChannel
127 interrupted = true;
164 if (interrupted) {
165 interrupted = false;
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 308 * @return the other thread's item, or CANCEL if interrupted or timed out
427 * in public exchange method to abort if interrupted on entry.
447 * filled in by another thread. Fails if interrupted before
482 * thread. Fails if timed out or interrupted before hole filled.
559 * the current thread is {@linkplain Thread#interrupt interrupted}),
578 * <li>has its interrupted status set on entry to this method; or
579 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
583 * interrupted status is cleared.
588 * interrupted while waiting
591 if (!Thread.interrupted()) {
    [all...]
SynchronousQueue.java 154 * by checking Thread.interrupted.
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
error_constants.h 75 interrupted = EINTR, member in class:errc
  /dalvik/vm/
Thread.h 183 /* mutex to guard the interrupted and the waitMonitor members */
191 /* thread "interrupted" status; stays raised until queried or thrown */
193 bool interrupted; member in struct:Thread
463 * is interrupted.
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 150 fail("Should not be interrupted");
170 fail("Should not be interrupted");
257 private static boolean interrupted = false; field in class:OldThreadGroupTest
271 assertFalse("Incorrect state of thread", interrupted);
273 assertFalse("Incorrect state of thread", interrupted);
279 assertTrue("Incorrect state of thread", interrupted);
332 interrupted = true;
  /external/strace/
strace.c 97 static volatile sig_atomic_t interrupted; variable
100 static volatile int interrupted; variable
102 static int interrupted; variable
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java 56 boolean interrupted; field in class:OldDatagramSocketTest
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ReentrantLockTest.java 37 * interrupted
699 public volatile boolean interrupted = false; field in class:ReentrantLockTest.UninterruptibleThread
715 interrupted = isInterrupted();
744 assertTrue(thread.interrupted);
ReentrantReadWriteLockTest.java 37 * interrupted
823 public volatile boolean interrupted = false; field in class:ReentrantReadWriteLockTest.UninterruptableThread
839 interrupted = isInterrupted();
868 assertTrue(thread.interrupted);
    [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 175 static ESR_BOOL interrupted = ESR_FALSE; variable
181 interrupted = ESR_TRUE;
    [all...]
  /external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c 173 static ESR_BOOL interrupted = ESR_FALSE; variable
179 interrupted = ESR_TRUE;
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 583 milliseconds