Searched refs:timed_out (Results 1 - 10 of 10) sorted by relevance

/art/runtime/
H A Dbarrier.cc64 bool timed_out = false; local
69 timed_out = condition_.TimedWait(self, timeout_ms, timeout_ns);
70 if (timed_out || count_ == 0) return timed_out;
79 return timed_out;
H A Dthread_list.h78 bool* timed_out)
87 Thread* SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, bool* timed_out)
H A Dthread_list.cc188 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); local
189 if (timed_out) {
624 bool debug_suspension, bool* timed_out) {
627 *timed_out = false;
702 *timed_out = true;
727 bool* timed_out) {
730 *timed_out = false;
800 *timed_out = true;
623 SuspendThreadByPeer(jobject peer, bool request_suspension, bool debug_suspension, bool* timed_out) argument
726 SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, bool* timed_out) argument
H A Dprofiler.cc244 bool timed_out = profiler->profiler_barrier_->Increment(self, barrier_count, kWaitTimeoutMs); local
248 CHECK(!timed_out);
H A Dmonitor.cc669 bool timed_out; local
673 owner = thread_list->SuspendThreadByThreadId(owner_thread_id, false, &timed_out);
H A Ddebugger.cc2447 bool timed_out; local
2450 &timed_out);
2453 } else if (timed_out) {
3636 bool timed_out; local
3639 &timed_out);
/art/runtime/native/
H A Ddalvik_system_VMStack.cc40 bool timed_out; local
41 Thread* thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
50 if (timed_out) {
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc58 bool timed_out; local
66 Thread* thread = thread_list->SuspendThreadByThreadId(thin_lock_id, false, &timed_out);
76 if (timed_out) {
H A Djava_lang_Thread.cc134 bool timed_out; local
136 Thread* thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
143 } else if (timed_out) {
/art/runtime/base/
H A Dmutex.cc866 bool timed_out = false; local
882 timed_out = true;
908 timed_out = true;
916 return timed_out;

Completed in 213 milliseconds