Searched defs:interrupted (Results 1 - 2 of 2) sorted by relevance

/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 1155 milliseconds