| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stoptheworld_linux_libcdep.cc | 93 tid_t GetThreadID(uptr index) const; 190 pid_t tid = suspended_threads_list_.GetThreadID(i); in ResumeAllThreads() 206 internal_ptrace(PTRACE_KILL, suspended_threads_list_.GetThreadID(i), in KillAllThreads() 515 tid_t SuspendedThreadsListLinux::GetThreadID(uptr index) const { in GetThreadID() function in __sanitizer::SuspendedThreadsListLinux 537 pid_t tid = GetThreadID(index); in GetRegistersAndSP()
|
| H A D | sanitizer_stoptheworld_mac.cc | 35 tid_t GetThreadID(uptr index) const; 111 tid_t SuspendedThreadsListMac::GetThreadID(uptr index) const { in GetThreadID() function in __sanitizer::SuspendedThreadsListMac
|
| H A D | sanitizer_stoptheworld.h | 44 virtual tid_t GetThreadID(uptr index) const { UNIMPLEMENTED(); } in GetThreadID() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | RegisterContextDarwin_arm64.cpp | 182 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR() 190 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 198 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC() 206 SetError(set, Read, DoReadDBG(GetThreadID(), set, dbg)); in ReadDBG() 217 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR() 228 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 239 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC() 250 SetError(set, Write, DoWriteDBG(GetThreadID(), set, dbg)); in WriteDBG()
|
| H A D | RegisterContextDarwin_i386.cpp | 514 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR() 522 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 530 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC() 541 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR() 552 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 563 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
|
| H A D | RegisterContextDarwin_arm.cpp | 1002 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR() 1010 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 1018 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC() 1026 SetError(set, Read, DoReadDBG(GetThreadID(), set, dbg)); in ReadDBG() 1037 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR() 1048 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 1059 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC() 1070 SetError(set, Write, DoWriteDBG(GetThreadID(), set, dbg)); in WriteDBG()
|
| H A D | RegisterContextDarwin_x86_64.cpp | 577 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR() 585 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 593 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC() 604 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR() 615 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 626 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | RegisterContext.cpp | 240 if (context->GetThreadID() != GetThreadID()) in CopyFromRegisterContext() 271 lldb::tid_t RegisterContext::GetThreadID() const { return m_thread.GetID(); } in GetThreadID() function in RegisterContext
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBBreakpointLocation.h | 65 lldb::tid_t GetThreadID();
|
| H A D | SBBreakpointName.h | 69 lldb::tid_t GetThreadID();
|
| H A D | SBBreakpoint.h | 78 lldb::tid_t GetThreadID();
|
| H A D | SBThread.h | 82 lldb::tid_t GetThreadID() const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBBreakpointLocation.cpp | 254 tid_t SBBreakpointLocation::GetThreadID() { in GetThreadID() function in SBBreakpointLocation 260 return loc_sp->GetThreadID(); in GetThreadID()
|
| H A D | SBBreakpoint.cpp | 312 tid_t SBBreakpoint::GetThreadID() { in GetThreadID() function in SBBreakpoint 318 tid = bkpt_sp->GetThreadID(); in GetThreadID()
|
| H A D | SBThread.cpp | 458 lldb::tid_t SBThread::GetThreadID() const { in GetThreadID() function in SBThread 816 if (sb_frame.GetThread().GetThreadID() != thread->GetID()) { in StepOutOfFrame() 820 sb_frame.GetThread().GetThreadID(), thread->GetID()); in StepOutOfFrame()
|
| H A D | SBBreakpointName.cpp | 360 tid_t SBBreakpointName::GetThreadID() { in GetThreadID() function in SBBreakpointName
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointLocation.h | 177 lldb::tid_t GetThreadID();
|
| H A D | Breakpoint.h | 431 lldb::tid_t GetThreadID() const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/ |
| H A D | NativeRegisterContext.h | 122 virtual lldb::tid_t GetThreadID() const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | RegisterContext.h | 148 virtual lldb::tid_t GetThreadID() const;
|
| /freebsd-12.1/contrib/compiler-rt/lib/lsan/ |
| H A D | lsan_common.cc | 223 tid_t os_id = static_cast<tid_t>(suspended_threads.GetThreadID(i)); in ProcessThreads() 546 threads[i] = suspended_threads.GetThreadID(i); in ReportUnsuspendedThreads()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/ |
| H A D | NativeRegisterContext.cpp | 237 lldb::tid_t NativeRegisterContext::GetThreadID() const { in GetThreadID() function in NativeRegisterContext
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| H A D | MICmnLLDBDebuggerHandleEvents.cpp | 443 sBrkPtInfo.m_bBrkPtThreadId = brkPt.GetThreadID() != 0; in HandleEventSBBreakpointAdded() 444 sBrkPtInfo.m_nBrkPtThreadId = brkPt.GetThreadID(); in HandleEventSBBreakpointAdded() 567 CMIUtilString::Format("%d", thread.GetThreadID())); in HandleEventSBThreadSuspended()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 117 lldb::tid_t BreakpointLocation::GetThreadID() { in GetThreadID() function in BreakpointLocation
|
| H A D | Breakpoint.cpp | 362 lldb::tid_t Breakpoint::GetThreadID() const { in GetThreadID() function in Breakpoint
|