Searched refs:can_update (Results 1 – 3 of 3) sorted by relevance
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/ |
| D | ThreadList.h | 43 GetSize(bool can_update = true); 74 GetThreadAtIndex (uint32_t idx, bool can_update = true); 86 FindThreadByID (lldb::tid_t tid, bool can_update = true); 89 FindThreadByProtocolID (lldb::tid_t tid, bool can_update = true); 92 RemoveThreadByID (lldb::tid_t tid, bool can_update = true); 95 RemoveThreadByProtocolID (lldb::tid_t tid, bool can_update = true); 98 FindThreadByIndexID (uint32_t index_id, bool can_update = true);
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/ |
| D | ThreadList.cpp | 100 ThreadList::GetSize (bool can_update) in GetSize() argument 103 if (can_update) in GetSize() 109 ThreadList::GetThreadAtIndex (uint32_t idx, bool can_update) in GetThreadAtIndex() argument 112 if (can_update) in GetThreadAtIndex() 122 ThreadList::FindThreadByID (lldb::tid_t tid, bool can_update) in FindThreadByID() argument 126 if (can_update) in FindThreadByID() 144 ThreadList::FindThreadByProtocolID (lldb::tid_t tid, bool can_update) in FindThreadByProtocolID() argument 148 if (can_update) in FindThreadByProtocolID() 167 ThreadList::RemoveThreadByID (lldb::tid_t tid, bool can_update) in RemoveThreadByID() argument 171 if (can_update) in RemoveThreadByID() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/API/ |
| D | SBProcess.cpp | 251 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetNumThreads() local 253 num_threads = process_sp->GetThreadList().GetSize(can_update); in GetNumThreads() 522 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadAtIndex() local 524 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update); in GetThreadAtIndex() 907 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadByID() local 908 thread_sp = process_sp->GetThreadList().FindThreadByID (tid, can_update); in GetThreadByID() 934 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); in GetThreadByIndexID() local 935 thread_sp = process_sp->GetThreadList().FindThreadByIndexID (index_id, can_update); in GetThreadByIndexID()
|