OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isInterrupted
(Results
1 - 25
of
52
) sorted by null
1
2
3
/libcore/libdvm/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/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.h
67
bool
isInterrupted
();
SQLiteStatement.cpp
63
if (m_database.
isInterrupted
())
92
if (m_database.
isInterrupted
())
/libcore/luni/src/test/java/tests/support/
ThreadPool.java
97
while (!
isInterrupted
()) {
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseBackendBase.h
74
bool
isInterrupted
();
SQLStatementSync.cpp
71
if (db->
isInterrupted
())
SQLStatementBackend.cpp
140
m_error = SQLError::create(db->
isInterrupted
() ? SQLError::DATABASE_ERR : SQLError::SYNTAX_ERR, "number of '?'s in statement string does not match argument count");
DatabaseBackendBase.cpp
599
bool DatabaseBackendBase::
isInterrupted
()
602
return m_sqliteDatabase.
isInterrupted
();
SQLTransaction.cpp
275
if (m_database->opened() && !m_database->
isInterrupted
()) {
SQLTransactionBackend.cpp
473
if (m_database->opened() && !m_database->
isInterrupted
()) {
[
all
...]
/libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java
371
else if (!t.
isInterrupted
() && m == 0 &&
430
if (t.
isInterrupted
()) // preserve interrupt status so caller can recheck
473
else if (!t.
isInterrupted
() && arena == null &&
483
v = timed && ns <= 0L && !t.
isInterrupted
() ? TIMED_OUT : null;
ThreadPoolExecutor.java
620
if (getState() >= 0 && (t = thread) != null && !t.
isInterrupted
()) {
757
if (!t.
isInterrupted
() && w.tryLock()) {
[
all
...]
SynchronousQueue.java
410
if (w.
isInterrupted
())
714
if (w.
isInterrupted
())
[
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
282
return Thread.currentThread().
isInterrupted
();
/external/chromium_org/third_party/sqlite/src/src/
tokenize.c
401
db->u1.
isInterrupted
= 0;
431
if( db->u1.
isInterrupted
){
/libcore/libart/src/main/java/java/lang/
Thread.java
647
* @see Thread#
isInterrupted
673
* @see Thread#
isInterrupted
709
public native boolean
isInterrupted
();
873
if (interruptAction != null &&
isInterrupted
()) {
[
all
...]
/art/runtime/native/
java_lang_Thread.cc
42
return (thread != NULL) ? thread->
IsInterrupted
() : JNI_FALSE;
171
NATIVE_METHOD(Thread,
isInterrupted
, "()Z"),
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Proxy.java
320
|| Thread.currentThread().
isInterrupted
()) {
/frameworks/base/core/java/com/android/internal/os/
TransferPipe.java
226
if (mThread.
isInterrupted
()) {
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java
582
if (
isInterrupted
()) {
600
if (
isInterrupted
()) {
Completed in 411 milliseconds
1
2
3