/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_stoptheworld_mac.cpp | 27 thread_t thread; 35 thread_t GetThread(uptr index) const; 37 bool ContainsThread(thread_t thread) const; 38 void Append(thread_t thread); 65 thread_t thread_self = mach_thread_self(); in RunThread() 119 thread_t SuspendedThreadsListMac::GetThread(uptr index) const { in GetThread() 128 bool SuspendedThreadsListMac::ContainsThread(thread_t thread) const { in ContainsThread() 135 void SuspendedThreadsListMac::Append(thread_t thread) { in Append() 149 thread_t thread = GetThread(index); in GetRegistersAndSP()
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/ |
H A D | HostNativeThreadBase.h | 31 explicit HostNativeThreadBase(lldb::thread_t thread); 38 virtual bool EqualsThread(lldb::thread_t thread) const; 39 lldb::thread_t Release(); 41 lldb::thread_t GetSystemHandle() const; 48 lldb::thread_t m_thread = LLDB_INVALID_HOST_THREAD;
|
H A D | HostThread.h | 32 HostThread(lldb::thread_t thread); 37 lldb::thread_t Release(); 44 bool EqualsThread(lldb::thread_t thread) const;
|
/openbsd/gnu/llvm/lldb/source/Host/common/ |
H A D | HostNativeThreadBase.cpp | 21 HostNativeThreadBase::HostNativeThreadBase(thread_t thread) in HostNativeThreadBase() 24 lldb::thread_t HostNativeThreadBase::GetSystemHandle() const { in GetSystemHandle() 41 bool HostNativeThreadBase::EqualsThread(lldb::thread_t thread) const { in EqualsThread() 45 lldb::thread_t HostNativeThreadBase::Release() { in Release() 46 lldb::thread_t result = m_thread; in Release()
|
H A D | HostThread.cpp | 17 HostThread::HostThread(lldb::thread_t thread) in HostThread() 28 lldb::thread_t HostThread::Release() { return m_native_thread->Release(); } in Release() 44 bool HostThread::EqualsThread(lldb::thread_t thread) const { in EqualsThread()
|
H A D | ThreadLauncher.cpp | 31 lldb::thread_t thread; in LaunchThread() 33 thread = (lldb::thread_t)::_beginthreadex( in LaunchThread()
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
H A D | MachThread.h | 39 uint64_t unique_thread_id = 0, thread_t mach_port_number = 0); 47 thread_t MachPortNumber() const { return m_mach_port_number; } in MachPortNumber() 48 thread_t InferiorThreadID() const; 53 static bool MachPortNumberIsValid(thread_t thread); // The mach port # for 124 static uint64_t GetGloballyUniqueThreadIDForMachPortID(thread_t mach_port_id); 127 static bool GetBasicInfo(thread_t threadID, 137 thread_t m_mach_port_number; // The mach port # for this thread in debugserver
|
H A D | MachThreadList.h | 77 MachThreadSP GetThreadByMachPortNumber(thread_t mach_port_number) const; 78 nub_thread_t GetThreadIDByMachPortNumber(thread_t mach_port_number) const; 79 thread_t GetMachPortNumberByThreadID(nub_thread_t globally_unique_id) const;
|
H A D | MachException.h | 44 thread_t thread_port; 114 thread_t thread_port; // Set to THREAD_NULL for any thread
|
H A D | MachThreadList.cpp | 98 thread_t mach_port_number = GetMachPortNumberByThreadID(tid); in GetIdentifierInfo() 132 MachThreadList::GetThreadByMachPortNumber(thread_t mach_port_number) const { in GetThreadByMachPortNumber() 146 MachThreadList::GetThreadIDByMachPortNumber(thread_t mach_port_number) const { in GetThreadIDByMachPortNumber() 158 thread_t MachThreadList::GetMachPortNumberByThreadID( in GetMachPortNumberByThreadID() 310 const thread_t mach_port_num = thread_list[idx]; in UpdateThreadList() 340 (vm_size_t)(thread_list_count * sizeof(thread_t)); in UpdateThreadList()
|
H A D | MachThread.cpp | 28 uint64_t unique_thread_id, thread_t mach_port_num) in MachThread() 195 thread_t MachThread::InferiorThreadID() const { in InferiorThreadID() 200 thread_t inferior_tid = INVALID_NUB_THREAD; in InferiorThreadID() 255 bool MachThread::GetBasicInfo(thread_t thread, in GetBasicInfo() 270 bool MachThread::MachPortNumberIsValid(thread_t thread) { in MachPortNumberIsValid() 608 MachThread::GetGloballyUniqueThreadIDForMachPortID(thread_t mach_port_id) { in GetGloballyUniqueThreadIDForMachPortID()
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBHostOS.i | 33 static lldb::thread_t 40 ThreadCancel (lldb::thread_t thread, 44 ThreadDetach (lldb::thread_t thread, 47 ThreadJoin (lldb::thread_t thread,
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBHostOS.h | 29 static lldb::thread_t ThreadCreate(const char *name, 33 static bool ThreadCancel(lldb::thread_t thread, lldb::SBError *err); 35 static bool ThreadDetach(lldb::thread_t thread, lldb::SBError *err); 36 static bool ThreadJoin(lldb::thread_t thread, lldb::thread_result_t *result,
|
/openbsd/gnu/llvm/lldb/include/lldb/ |
H A D | lldb-types.h | 41 typedef void *thread_t; // Host thread type typedef 58 typedef pthread_t thread_t; // Host thread type typedef 79 #define LLDB_INVALID_HOST_THREAD ((lldb::thread_t)NULL)
|
/openbsd/gnu/gcc/gcc/ |
H A D | gthr-solaris.h | 57 thread_t owner; 161 thread_t new_thread_id = 0; in __gthread_objc_thread_detach() 495 mutex->owner = (thread_t) 0; in __gthread_recursive_mutex_init_function() 504 thread_t me = __gthrw_(thr_self) (); in __gthread_recursive_mutex_lock() 522 thread_t me = __gthrw_(thr_self) (); in __gthread_recursive_mutex_trylock() 543 mutex->owner = (thread_t) 0; in __gthread_recursive_mutex_unlock()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBHostOS.cpp | 100 lldb::thread_t SBHostOS::ThreadCreate(const char *name, in ThreadCreate() 121 bool SBHostOS::ThreadCancel(lldb::thread_t thread, SBError *error_ptr) { in ThreadCancel() 133 bool SBHostOS::ThreadDetach(lldb::thread_t thread, SBError *error_ptr) { in ThreadDetach() 150 bool SBHostOS::ThreadJoin(lldb::thread_t thread, lldb::thread_result_t *result, in ThreadJoin()
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/windows/ |
H A D | HostThreadWindows.h | 24 HostThreadWindows(lldb::thread_t thread); 32 bool EqualsThread(lldb::thread_t thread) const override;
|
/openbsd/gnu/llvm/lldb/tools/darwin-threads/ |
H A D | examine-threads.c | 116 thread_basic_info_t get_thread_basic_info(thread_t thread) { in get_thread_basic_info() 134 thread_identifier_info_data_t get_thread_identifier_info(thread_t thread) { in get_thread_identifier_info() 154 thread_t examine_threads_port, in inferior_namespace_mach_port_num() 155 thread_t *inferior_port) { in inferior_namespace_mach_port_num() 197 uint64_t get_current_pc(thread_t thread, int *wordsize) { in get_current_pc() 452 thread_t mach_port_inferior_namespace; in main()
|
/openbsd/gnu/llvm/lldb/source/Host/windows/ |
H A D | HostThreadWindows.cpp | 26 HostThreadWindows::HostThreadWindows(lldb::thread_t thread) in HostThreadWindows() 70 bool HostThreadWindows::EqualsThread(lldb::thread_t thread) const { in EqualsThread()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
H A D | NativeRegisterContextWindows.cpp | 25 lldb::thread_t NativeRegisterContextWindows::GetThreadHandle() const { in GetThreadHandle()
|
H A D | NativeRegisterContextWindows.h | 31 lldb::thread_t GetThreadHandle() const;
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/posix/ |
H A D | HostThreadPosix.h | 22 HostThreadPosix(lldb::thread_t thread);
|
/openbsd/gnu/llvm/lldb/source/Host/posix/ |
H A D | HostThreadPosix.cpp | 20 HostThreadPosix::HostThreadPosix(lldb::thread_t thread) in HostThreadPosix()
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | gnu-nat.h | 41 thread_t port; /* The task or thread port. */
|
H A D | gdb_thread_db.h | 257 typedef pthread_t thread_t; typedef 278 thread_t ti_tid; /* Thread ID returned by
|