/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ThreadList.h | 50 ExpressionExecutionThreadPusher(ThreadList &thread_list, lldb::tid_t tid) in ExpressionExecutionThreadPusher() argument 51 : m_thread_list(&thread_list), m_tid(tid) { in ExpressionExecutionThreadPusher()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBQueue.cpp | 92 const std::vector<ThreadSP> thread_list(queue_sp->GetThreads()); in FetchThreads() local 94 const uint32_t num_threads = thread_list.size(); in FetchThreads() 96 ThreadSP thread_sp = thread_list[idx]; in FetchThreads()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/ |
H A D | MinidumpFileBuilder.cpp | 72 lldb_private::ThreadList thread_list = m_process_sp->GetThreadList(); in AddHeaderAndCalculateDirectories() local 73 const uint32_t num_threads = thread_list.GetSize(); in AddHeaderAndCalculateDirectories() 75 ThreadSP thread_sp(thread_list.GetThreadAtIndex(thread_idx)); in AddHeaderAndCalculateDirectories() 591 lldb_private::ThreadList thread_list = m_process_sp->GetThreadList(); in AddThreadList() local 596 thread_list.GetSize() * minidump_thread_size; in AddThreadList() 605 static_cast<llvm::support::ulittle32_t>(thread_list.GetSize()); in AddThreadList() 612 const uint32_t num_threads = thread_list.GetSize(); in AddThreadList() 615 ThreadSP thread_sp(thread_list.GetThreadAtIndex(thread_idx)); in AddThreadList() 677 lldb_private::ThreadList thread_list = m_process_sp->GetThreadList(); in AddExceptions() local 679 const uint32_t num_threads = thread_list.GetSize(); in AddExceptions() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
H A D | OperatingSystemPython.cpp | 376 ThreadList &thread_list = m_process->GetThreadList(); in CreateThread() local 380 thread_list, core_used_map, &did_create)); in CreateThread() 382 thread_list.AddThread(thread_sp); in CreateThread()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITProfiling/ |
H A D | ittnotify_config.h | 349 __itt_thread_info* thread_list; member 368 (gptr)->thread_list = h; \ 385 (gptr)->thread_list = h; \
|
/freebsd/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ |
H A D | ittnotify_static.cpp | 185 _N_(_ittapi_global).thread_list == NULL) \ 202 _N_(_ittapi_global).thread_list == NULL) \ 452 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE() 468 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE() 865 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE() 878 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE() 893 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE() 919 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE() 957 _N_(_ittapi_global).thread_list == NULL) { in ITT_VERSIONIZE()
|
H A D | ittnotify_config.h | 477 __itt_thread_info *thread_list; 500 (gptr)->thread_list = h; \ 518 (gptr)->thread_list = h; \ 465 __itt_thread_info *thread_list; global() member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan.cpp | 170 HwasanThreadList &thread_list = hwasanThreadList(); in HwasanFormatMemoryUsage() local 171 auto thread_stats = thread_list.GetThreadStats(); in HwasanFormatMemoryUsage() 181 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(), in HwasanFormatMemoryUsage()
|
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-port.cc | 127 thread_act_array_t thread_list; 128 const kern_return_t status = task_threads(task, &thread_list, &thread_count); 132 vm_deallocate(task, reinterpret_cast<vm_address_t>(thread_list),
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Process.cpp | 830 ThreadList &thread_list = process_sp->GetThreadList(); in HandleProcessStateChangedEvent() local 831 std::lock_guard<std::recursive_mutex> guard(thread_list.GetMutex()); in HandleProcessStateChangedEvent() 833 ThreadSP curr_thread(thread_list.GetSelectedThread()); in HandleProcessStateChangedEvent() 865 const size_t num_threads = thread_list.GetSize(); in HandleProcessStateChangedEvent() 868 thread = thread_list.GetThreadAtIndex(i); in HandleProcessStateChangedEvent() 907 thread_list.SetSelectedThreadByID(plan_thread->GetID()); in HandleProcessStateChangedEvent() 909 thread_list.SetSelectedThreadByID(other_thread->GetID()); in HandleProcessStateChangedEvent() 914 thread = thread_list.GetThreadAtIndex(0); in HandleProcessStateChangedEvent() 917 thread_list.SetSelectedThreadByID(thread->GetID()); in HandleProcessStateChangedEvent() 5588 ThreadList &thread_list = process->GetThreadList(); in RunThreadPlan() local [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectMemory.cpp | 1569 HistoryThreads thread_list = memory_history->GetHistoryThreads(addr); in DoExecute() local 1572 for (auto thread : thread_list) { in DoExecute()
|
H A D | CommandObjectTarget.cpp | 3038 ThreadList &thread_list = process->GetThreadList(); in DoExecute() local 3040 thread_list.GetSelectedThread()->GetRegisterContext()); in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 5165 ThreadList &thread_list = thread_sp->GetProcess()->GetThreadList(); in TreeDelegateItemSelected() local 5166 std::lock_guard<std::recursive_mutex> guard(thread_list.GetMutex()); in TreeDelegateItemSelected() 5167 ThreadSP selected_thread_sp = thread_list.GetSelectedThread(); in TreeDelegateItemSelected() 5169 thread_list.SetSelectedThreadByID(thread_sp->GetID()); in TreeDelegateItemSelected()
|