HomeSort by relevance Sort by last modified time
    Searched refs:isInterrupted (Results 1 - 25 of 41) sorted by null

1 2

  /libcore/luni/src/main/java/java/lang/
VMThread.java 36 native boolean isInterrupted();
Thread.java 657 * @see Thread#isInterrupted
684 * @see Thread#isInterrupted
722 public boolean isInterrupted() {
725 return vmt.isInterrupted();
902 if (interruptAction != null && isInterrupted()) {
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 64 bool isInterrupted();
SQLiteStatement.cpp 69 if (m_database.isInterrupted())
101 if (m_database.isInterrupted())
SQLiteDatabase.cpp 124 bool SQLiteDatabase::isInterrupted()
  /external/webkit/Source/WebCore/storage/
AbstractDatabase.h 72 bool isInterrupted();
SQLStatementSync.cpp 68 ec = (db->isInterrupted()? SQLException::DATABASE_ERR : SQLException::SYNTAX_ERR);
SQLStatement.cpp 89 m_error = SQLError::create(db->isInterrupted() ? SQLError::DATABASE_ERR : SQLError::SYNTAX_ERR, "number of '?'s in statement string does not match argument count");
AbstractDatabase.cpp 489 bool AbstractDatabase::isInterrupted()
492 return m_sqliteDatabase.isInterrupted();
SQLTransaction.cpp 152 if (m_database->opened() && !m_database->isInterrupted())
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 97 while (!isInterrupted()) {
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 474 else if (w.isInterrupted()) // Abort on interrupt
509 else if (w.isInterrupted())
514 else if (tryCancel(node, slot) && !w.isInterrupted())
SynchronousQueue.java 408 if (w.isInterrupted())
713 if (w.isInterrupted())
    [all...]
ThreadPoolExecutor.java 737 if (!t.isInterrupted() && w.tryLock()) {
    [all...]
LinkedTransferQueue.java 682 if ((w.isInterrupted() || (timed && nanos <= 0)) &&
    [all...]
  /development/samples/training/threadsample/src/com/example/android/threadsample/
RSSPullParser.java 113 if (Thread.currentThread().isInterrupted()) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryDownloadProgressBar.java 127 while (!isInterrupted()) {
  /development/samples/training/NsdChat/src/com/example/android/nsdchat/
ChatConnection.java 146 while (!Thread.currentThread().isInterrupted()) {
233 while (!Thread.currentThread().isInterrupted()) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 87 while (!Thread.currentThread().isInterrupted()) {
562 * @tests java.lang.Thread#isInterrupted()
565 // Test for method boolean java.lang.Thread.isInterrupted()
570 while (!Thread.currentThread().isInterrupted())
583 .isInterrupted());
586 .isInterrupted());
  /frameworks/base/core/java/android/content/
AbstractThreadedSyncAdapter.java 277 return Thread.currentThread().isInterrupted();
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Proxy.java 320 || Thread.currentThread().isInterrupted()) {
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 226 if (mThread.isInterrupted()) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java 582 if (isInterrupted()) {
600 if (isInterrupted()) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractServiceTest.java 114 assertTrue(currentThread().isInterrupted());
FuturesTest.java     [all...]

Completed in 824 milliseconds

1 2