Home
last modified time | relevance | path

Searched refs:thread_info (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/clang/tools/c-arcmt-test/
H A Dc-arcmt-test.c92 typedef struct thread_info { struct
96 } thread_info; typedef
98 thread_info *client_data = client_data_v; in thread_runner()
110 thread_info client_data; in main()
/llvm-project-15.0.7/lldb/examples/python/
H A Doperating_system.py30 thread_info = {
36 self.threads.append(thread_info)
37 return thread_info
H A Dgdbremote.py1087 thread_info = packet.get_key_value_pairs()
1088 tid = int(thread_info[0][1], 16)
/llvm-project-15.0.7/lldb/test/API/functionalities/plugins/python_os_plugin/
H A Doperating_system2.py30 thread_info = {
36 self.threads.append(thread_info)
37 return thread_info
H A Doperating_system.py30 thread_info = {
36 self.threads.append(thread_info)
37 return thread_info
/llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/
H A DMessageObjects.cpp106 StructuredData::Dictionary *thread_info; in create() local
107 array->GetItemAtIndexAsDictionary(i, thread_info); in create()
108 if (!thread_info) in create()
112 thread_info->GetValueForKeyAsString("name", name); in create()
113 thread_info->GetValueForKeyAsString("reason", reason); in create()
115 thread_info->GetValueForKeyAsInteger("signal", signal); in create()
117 thread_info->GetValueForKeyAsInteger("tid", tid); in create()
120 thread_info->GetValueForKeyAsDictionary("registers", register_dict); in create()
/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestGdbRemoteThreadsInStopReply.py108 for thread_info in jthreads_info:
109 tid = thread_info["tid"]
110 pc = thread_info["registers"][register]
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachThread.cpp259 kern_return_t err = ::thread_info(thread, THREAD_BASIC_INFO, in GetBasicInfo()
588 kern_return_t kret = ::thread_info(m_mach_port_number, THREAD_IDENTIFIER_INFO, in GetIdentifierInfo()
612 kr = thread_info(mach_port_id, THREAD_IDENTIFIER_INFO, (thread_info_t)&tident, in GetGloballyUniqueThreadIDForMachPortID()
626 kr = thread_info(m_mach_port_number, THREAD_IDENTIFIER_INFO, in GetPThreadT()
706 kr = thread_info(m_mach_port_number, THREAD_IDENTIFIER_INFO, in GetDispatchQueueT()
H A DMachThreadList.cpp101 return ::thread_info(mach_port_number, THREAD_IDENTIFIER_INFO, in GetIdentifierInfo()
H A DMachTask.mm253 kr = ::thread_info(threads[i], THREAD_IDENTIFIER_INFO,
260 kr = ::thread_info(threads[i], THREAD_BASIC_INFO,
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp305 auto thread_info = in MonitorSIGTRAP() local
307 if (thread_info != m_threads_stepping_with_breakpoint.end()) { in MonitorSIGTRAP()
309 Status brkpt_error = RemoveBreakpoint(thread_info->second); in MonitorSIGTRAP()
312 thread_info->first, brkpt_error); in MonitorSIGTRAP()
313 m_threads_stepping_with_breakpoint.erase(thread_info); in MonitorSIGTRAP()
/llvm-project-15.0.7/lldb/tools/darwin-threads/
H A Dexamine-threads.c120 kr = thread_info(thread, THREAD_BASIC_INFO, (thread_info_t)thinfo, in get_thread_basic_info()
138 kr = thread_info(thread, THREAD_IDENTIFIER_INFO, (thread_info_t)&tident, in get_thread_identifier_info()
/llvm-project-15.0.7/lldb/source/Target/
H A DThread.cpp1766 StructuredData::ObjectSP thread_info = GetExtendedInfo(); in GetDescription() local
1769 if (thread_info && print_json_thread) { in GetDescription()
1770 thread_info->Dump(strm); in GetDescription()
1785 if (thread_info) { in GetDescription()
1787 thread_info->GetObjectForDotSeparatedPath("activity"); in GetDescription()
1789 thread_info->GetObjectForDotSeparatedPath("breadcrumb"); in GetDescription()
1791 thread_info->GetObjectForDotSeparatedPath("trace_messages"); in GetDescription()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_mac.cpp135 kern_return_t err = thread_info(thread, THREAD_IDENTIFIER_INFO, in Append()
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dtimers.cc158 if (thread_info(thread, THREAD_BASIC_INFO, in ThreadCPUUsage()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.cpp550 for (const auto &thread_info : m_session_data->m_new_threads) { in DoUpdateThreadList() local
551 new_thread_list.AddThread(thread_info.second); in DoUpdateThreadList()
554 LLDB_LOGV(log, "Thread {0} is new since last update.", thread_info.first); in DoUpdateThreadList()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp1846 for (const auto &thread_info : m_threads_stepping_with_breakpoint) { in SignalIfAllThreadsStopped() local
1847 Status error = RemoveBreakpoint(thread_info.second); in SignalIfAllThreadsStopped()
1850 thread_info.first, error); in SignalIfAllThreadsStopped()
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dc-index-test.c4985 typedef struct thread_info { struct
4990 } thread_info; argument
4992 thread_info *client_data = client_data_v; in thread_runner()
5005 thread_info client_data; in main()