Searched refs:interrupted (Results 1 - 6 of 6) sorted by relevance

/art/test/1941-dispose-stress/src/art/
H A DTest1941.java47 while (!Thread.interrupted()) {
/art/test/050-sync-test/src/
H A DMain.java165 // Expecting this; interrupted should be false.
167 " interrupted, flag=" + Thread.interrupted());
/art/runtime/native/
H A Djava_lang_Thread.cc199 FAST_NATIVE_METHOD(Thread, interrupted, "()Z"),
/art/test/988-method-trace/src/art/
H A DTest988Intrinsics.java133 java.lang.Thread.interrupted();
/art/runtime/
H A Dthread.h553 // Implements java.lang.Thread.interrupted.
559 tls32_.interrupted.StoreSequentiallyConsistent(i);
654 OFFSETOF_MEMBER(tls_32bit_sized_values, interrupted));
1524 // Thread "interrupted" status; stays raised until queried or thrown.
1525 Atomic<bool32_t> interrupted; variable
H A Dthread.cc2109 tls32_.interrupted.StoreRelaxed(false);
2400 // Implements java.lang.Thread.interrupted.
2403 // No other thread can concurrently reset the interrupted flag.
2404 bool interrupted = tls32_.interrupted.LoadSequentiallyConsistent(); local
2405 if (interrupted) {
2406 tls32_.interrupted.StoreSequentiallyConsistent(false);
2408 return interrupted;
2413 return tls32_.interrupted.LoadSequentiallyConsistent();
2418 if (tls32_.interrupted
[all...]

Completed in 211 milliseconds