Home
last modified time | relevance | path

Searched refs:can_update (Results 1 – 3 of 3) sorted by relevance

/external/lldb/include/lldb/Target/
DThreadList.h42 GetSize(bool can_update = true);
71 GetThreadAtIndex (uint32_t idx, bool can_update = true);
74 FindThreadByID (lldb::tid_t tid, bool can_update = true);
77 FindThreadByProtocolID (lldb::tid_t tid, bool can_update = true);
80 RemoveThreadByID (lldb::tid_t tid, bool can_update = true);
83 RemoveThreadByProtocolID (lldb::tid_t tid, bool can_update = true);
86 FindThreadByIndexID (uint32_t index_id, bool can_update = true);
/external/lldb/source/Target/
DThreadList.cpp89 ThreadList::GetSize (bool can_update) in GetSize() argument
92 if (can_update) in GetSize()
98 ThreadList::GetThreadAtIndex (uint32_t idx, bool can_update) in GetThreadAtIndex() argument
101 if (can_update) in GetThreadAtIndex()
111 ThreadList::FindThreadByID (lldb::tid_t tid, bool can_update) in FindThreadByID() argument
115 if (can_update) in FindThreadByID()
133 ThreadList::FindThreadByProtocolID (lldb::tid_t tid, bool can_update) in FindThreadByProtocolID() argument
137 if (can_update) in FindThreadByProtocolID()
156 ThreadList::RemoveThreadByID (lldb::tid_t tid, bool can_update) in RemoveThreadByID() argument
160 if (can_update) in RemoveThreadByID()
[all …]
/external/lldb/source/API/
DSBProcess.cpp247 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetNumThreads() local
249 num_threads = process_sp->GetThreadList().GetSize(can_update); in GetNumThreads()
518 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadAtIndex() local
520 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update); in GetThreadAtIndex()
856 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadByID() local
857 thread_sp = process_sp->GetThreadList().FindThreadByID (tid, can_update); in GetThreadByID()
883 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadByIndexID() local
884 thread_sp = process_sp->GetThreadList().FindThreadByIndexID (index_id, can_update); in GetThreadByIndexID()