Home
last modified time | relevance | path

Searched refs:GetThreadID (Results 1 – 25 of 52) sorted by relevance

123

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.cpp463 if (NativeThreadWindows *thread = GetThreadByID(record.GetThreadID())) { in OnDebugException()
477 StopThread(record.GetThreadID(), StopReason::eStopReasonWatchpoint, in OnDebugException()
482 StopThread(record.GetThreadID(), StopReason::eStopReasonTrace); in OnDebugException()
495 StopThread(record.GetThreadID(), StopReason::eStopReasonBreakpoint); in OnDebugException()
498 GetThreadByID(record.GetThreadID())) { in OnDebugException()
519 if (NativeThreadWindows *thread = GetThreadByID(record.GetThreadID())) in OnDebugException()
546 StopThread(record.GetThreadID(), StopReason::eStopReasonException, in OnDebugException()
H A DExceptionRecord.h60 lldb::tid_t GetThreadID() const { return m_thread_id; } in GetThreadID() function
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cpp93 tid_t GetThreadID(uptr index) const override;
190 pid_t tid = suspended_threads_list_.GetThreadID(i); in ResumeAllThreads()
206 internal_ptrace(PTRACE_KILL, suspended_threads_list_.GetThreadID(i), in KillAllThreads()
542 tid_t SuspendedThreadsListLinux::GetThreadID(uptr index) const { in GetThreadID() function in __sanitizer::SuspendedThreadsListLinux
564 pid_t tid = GetThreadID(index); in GetRegistersAndSP()
H A Dsanitizer_stoptheworld_win.cpp41 tid_t GetThreadID(uptr index) const override;
69 tid_t SuspendedThreadsListWindows::GetThreadID(uptr index) const { in GetThreadID() function in __sanitizer::__anonc8a8899e0111::SuspendedThreadsListWindows
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp55 tid_t GetThreadID(uptr index) const;
316 tid_t SuspendedThreadsListNetBSD::GetThreadID(uptr index) const { in GetThreadID() function in __sanitizer::SuspendedThreadsListNetBSD
339 lwpid_t tid = GetThreadID(index); in GetRegistersAndSP()
H A Dsanitizer_stoptheworld_mac.cpp34 tid_t GetThreadID(uptr index) const override;
114 tid_t SuspendedThreadsListMac::GetThreadID(uptr index) const { in GetThreadID() function in __sanitizer::SuspendedThreadsListMac
H A Dsanitizer_stoptheworld.h41 virtual tid_t GetThreadID(uptr index) const { UNIMPLEMENTED(); } in GetThreadID() function
/openbsd-src/gnu/llvm/libcxxabi/src/
H A Dcxa_guard_impl.h313 uint32_t (*GetThreadID)() = PlatformThreadID>
318 has_thread_id_support(_thread_id_address != nullptr && GetThreadID != nullptr) {} in InitByteGlobalMutex()
387 LazyValue<uint32_t, GetThreadID> current_thread_id;
621 uint32_t (*GetThreadID)() = PlatformThreadID>
622 …exGuard = GuardObject<InitByteGlobalMutex<Mutex, CondVar, global_mutex, global_cond, GetThreadID>>;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_arm64.cpp174 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR()
182 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU()
190 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC()
198 SetError(set, Read, DoReadDBG(GetThreadID(), set, dbg)); in ReadDBG()
209 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR()
220 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU()
231 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
242 SetError(set, Write, DoWriteDBG(GetThreadID(), set, dbg)); in WriteDBG()
H A DRegisterContextDarwin_i386.cpp476 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR()
484 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU()
492 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC()
503 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR()
514 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU()
525 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
H A DRegisterContextDarwin_x86_64.cpp520 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR()
528 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU()
536 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC()
547 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR()
558 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU()
569 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
H A DRegisterContextDarwin_arm.cpp940 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR()
948 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU()
956 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC()
964 SetError(set, Read, DoReadDBG(GetThreadID(), set, dbg)); in ReadDBG()
975 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR()
986 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU()
997 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
1008 SetError(set, Write, DoWriteDBG(GetThreadID(), set, dbg)); in WriteDBG()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBThread.i145 GetThreadID;
147 GetThreadID () const;
452 …id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an inte…
H A DSBBreakpointName.i71 lldb::tid_t GetThreadID();
H A DSBBreakpointLocation.i109 GetThreadID ();
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBTrace.cpp110 m_opaque_sp->Start(std::vector<lldb::tid_t>{thread.GetThreadID()}, in Start()
133 else if (llvm::Error err = m_opaque_sp->Stop({thread.GetThreadID()})) in Stop()
H A DSBBreakpointLocation.cpp316 tid_t SBBreakpointLocation::GetThreadID() { in GetThreadID() function in SBBreakpointLocation
324 return loc_sp->GetThreadID(); in GetThreadID()
/openbsd-src/gnu/usr.bin/binutils/gdb/nlm/
H A Dgdbserve.def15 GetThreadID
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedThreadPythonInterface.h31 lldb::tid_t GetThreadID() override;
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRegisterContext.cpp225 if (context->GetThreadID() != GetThreadID()) in CopyFromRegisterContext()
256 lldb::tid_t RegisterContext::GetThreadID() const { return m_thread.GetID(); } in GetThreadID() function in RegisterContext
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBBreakpointLocation.h71 lldb::tid_t GetThreadID();
H A DSBBreakpointName.h70 lldb::tid_t GetThreadID();
/openbsd-src/lib/libcurses/tinfo/
H A Dentries.c137 pthread_t id = GetThreadID(); in _nc_leaks_tinfo()
H A Dlib_setup.c896 pthread_t id = GetThreadID(); in _nc_find_prescr()
915 pthread_t id = GetThreadID(); in _nc_forget_prescr()
955 p->id = GetThreadID(); in new_prescr()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DScriptedProcessInterface.h88 virtual lldb::tid_t GetThreadID() { return LLDB_INVALID_THREAD_ID; } in GetThreadID() function

123