Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Target/
DThreadList.h38 uint32_t GetSize(bool can_update = true);
87 lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update = true);
89 lldb::ThreadSP FindThreadByID(lldb::tid_t tid, bool can_update = true);
92 bool can_update = true);
94 lldb::ThreadSP RemoveThreadByID(lldb::tid_t tid, bool can_update = true);
97 bool can_update = true);
99 lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update = true);
/external/llvm-project/lldb/source/Target/
DThreadList.cpp82 uint32_t ThreadList::GetSize(bool can_update) { in GetSize() argument
85 if (can_update) in GetSize()
90 ThreadSP ThreadList::GetThreadAtIndex(uint32_t idx, bool can_update) { in GetThreadAtIndex() argument
93 if (can_update) in GetThreadAtIndex()
102 ThreadSP ThreadList::FindThreadByID(lldb::tid_t tid, bool can_update) { in FindThreadByID() argument
105 if (can_update) in FindThreadByID()
120 ThreadSP ThreadList::FindThreadByProtocolID(lldb::tid_t tid, bool can_update) { in FindThreadByProtocolID() argument
123 if (can_update) in FindThreadByProtocolID()
138 ThreadSP ThreadList::RemoveThreadByID(lldb::tid_t tid, bool can_update) { in RemoveThreadByID() argument
141 if (can_update) in RemoveThreadByID()
[all …]
/external/llvm-project/lldb/source/API/
DSBProcess.cpp201 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetNumThreads() local
204 num_threads = process_sp->GetThreadList().GetSize(can_update); in GetNumThreads()
438 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadAtIndex() local
441 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update); in GetThreadAtIndex()
734 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadByID() local
737 thread_sp = process_sp->GetThreadList().FindThreadByID(tid, can_update); in GetThreadByID()
753 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadByIndexID() local
757 process_sp->GetThreadList().FindThreadByIndexID(index_id, can_update); in GetThreadByIndexID()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp278 bool can_update = true; in GetRenumberedThreadIds() local
280 thread_os_id, can_update); in GetRenumberedThreadIds()