reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
  115   virtual NativeThreadProtocol &GetThread() { return m_thread; }
tools/lldb/source/Host/common/NativeRegisterContext.cpp
  233   return m_thread.GetID();
  341   NativeProcessProtocol &process = m_thread.GetProcess();
  378   NativeProcessProtocol &process = m_thread.GetProcess();
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
   28   return m_thread.GetProcess().GetByteOrder();
   99       PTRACE_GETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize());
  104       PTRACE_SETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize());
  108   return NativeProcessLinux::PtraceWrapper(PTRACE_GETFPREGS, m_thread.GetID(),
  114   return NativeProcessLinux::PtraceWrapper(PTRACE_SETFPREGS, m_thread.GetID(),
  121   return NativeProcessLinux::PtraceWrapper(PTRACE_GETREGSET, m_thread.GetID(),
  128   return NativeProcessLinux::PtraceWrapper(PTRACE_SETREGSET, m_thread.GetID(),
  141       PTRACE_PEEKUSER, m_thread.GetID(), reinterpret_cast<void *>(offset),
  160       PTRACE_POKEUSER, m_thread.GetID(), reinterpret_cast<void *>(offset), buf);