Searched refs:timed_out (Results 1 – 7 of 7) sorted by relevance
/art/runtime/native/ |
D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc | 56 bool timed_out; in DdmVmInternal_getStackTraceById() local 68 thread = thread_list->SuspendThreadByThreadId(thin_lock_id, false, &timed_out); in DdmVmInternal_getStackTraceById() 79 if (timed_out) { in DdmVmInternal_getStackTraceById()
|
D | dalvik_system_VMStack.cc | 38 bool timed_out; in GetThreadStack() local 43 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out); in GetThreadStack() 53 if (timed_out) { in GetThreadStack()
|
D | java_lang_Thread.cc | 132 bool timed_out; in Thread_nativeSetName() local 137 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out); in Thread_nativeSetName() 145 } else if (timed_out) { in Thread_nativeSetName()
|
/art/runtime/ |
D | thread_list.h | 71 bool* timed_out) 81 Thread* SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, bool* timed_out)
|
D | thread_list.cc | 461 bool debug_suspension, bool* timed_out) { in SuspendThreadByPeer() argument 466 *timed_out = false; in SuspendThreadByPeer() 517 *timed_out = true; in SuspendThreadByPeer() 533 bool* timed_out) { in SuspendThreadByThreadId() argument 537 *timed_out = false; in SuspendThreadByThreadId() 594 *timed_out = true; in SuspendThreadByThreadId()
|
D | monitor.cc | 685 bool timed_out; in InflateThinLocked() local 691 owner = thread_list->SuspendThreadByThreadId(owner_thread_id, false, &timed_out); in InflateThinLocked()
|
D | debugger.cc | 2395 bool timed_out; in SuspendThread() local 2398 &timed_out); in SuspendThread() 2401 } else if (timed_out) { in SuspendThread() 3366 bool timed_out; in ScopedThreadSuspension() local 3372 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out); in ScopedThreadSuspension()
|