Home
last modified time | relevance | path

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

/freebsd/contrib/libcxxrt/
H A Dexception.cc418 static void thread_cleanup(void* thread_info) in thread_cleanup() argument
420 __cxa_thread_info *info = static_cast<__cxa_thread_info*>(thread_info); in thread_cleanup()
435 free(thread_info); in thread_cleanup()
475 static __cxa_thread_info *thread_info() in thread_info() function
504 return &(thread_info()->globals); in __cxa_get_globals()
561 __cxa_thread_info *info = thread_info(); in emergency_malloc()
782 __cxa_thread_info *info = thread_info(); in throw_exception()
884 __cxa_thread_info *ti = thread_info(); in __cxa_rethrow()
1261 __cxa_thread_info *ti = thread_info();
1485 static __cxa_thread_info *info = thread_info();
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp324 auto thread_info = in MonitorSIGTRAP() local
326 if (thread_info != m_threads_stepping_with_breakpoint.end() && in MonitorSIGTRAP()
327 llvm::is_contained(thread_info->second, regctx.GetPC())) { in MonitorSIGTRAP()
329 for (auto &&bp_addr : thread_info->second) { in MonitorSIGTRAP()
333 thread_info->first, brkpt_error); in MonitorSIGTRAP()
335 m_threads_stepping_with_breakpoint.erase(thread_info); in MonitorSIGTRAP()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp1844 StructuredData::ObjectSP thread_info = GetExtendedInfo(); in GetDescription() local
1847 if (thread_info && print_json_thread) { in GetDescription()
1848 thread_info->Dump(strm); in GetDescription()
1863 if (thread_info) { in GetDescription()
1865 thread_info->GetObjectForDotSeparatedPath("activity"); in GetDescription()
1867 thread_info->GetObjectForDotSeparatedPath("breadcrumb"); in GetDescription()
1869 thread_info->GetObjectForDotSeparatedPath("trace_messages"); in GetDescription()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_mac.cpp138 kern_return_t err = thread_info(thread, THREAD_IDENTIFIER_INFO, in Append()
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/
H A Drtsan_test_interceptors_posix.cpp1109 struct thread_info *thread_info{}; in TEST() struct
1110 pthread_create(&thread, &attr, &FakeThreadEntryPoint, thread_info); in TEST()