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

Derived Classes

tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h
   27 class NativeThreadLinux : public NativeThreadProtocol {

Declarations

tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
   17 class NativeThreadProtocol;
tools/lldb/include/lldb/lldb-private-forward.h
   16 class NativeThreadProtocol;

References

tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  188   NativeThreadProtocol *GetThreadAtIndex(uint32_t idx);
  190   NativeThreadProtocol *GetThreadByID(lldb::tid_t tid);
  196   NativeThreadProtocol *GetCurrentThread() {
  406   std::vector<std::unique_ptr<NativeThreadProtocol>> m_threads;
  461   void FixupBreakpointPCAsNeeded(NativeThreadProtocol &thread);
  469   NativeThreadProtocol *GetThreadByIDUnlocked(lldb::tid_t tid);
tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
   23   NativeRegisterContext(NativeThreadProtocol &thread);
  115   virtual NativeThreadProtocol &GetThread() { return m_thread; }
  166   NativeThreadProtocol
tools/lldb/source/Host/common/NativeProcessProtocol.cpp
   87 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) {
   94 NativeThreadProtocol *
  103 NativeThreadProtocol *NativeProcessProtocol::GetThreadByID(lldb::tid_t tid) {
  123   NativeThreadProtocol *thread(
  153   std::vector<NativeThreadProtocol *> watchpoint_established_threads;
  244   std::vector<NativeThreadProtocol *> breakpoint_established_threads;
  582     NativeThreadProtocol &thread) {
tools/lldb/source/Host/common/NativeRegisterContext.cpp
   21 NativeRegisterContext::NativeRegisterContext(NativeThreadProtocol &thread)
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
 1146   NativeThreadProtocol *running_thread = nullptr;
 1147   NativeThreadProtocol *stopped_thread = nullptr;
 1172   NativeThreadProtocol *deferred_signal_thread =
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
   23     NativeThreadProtocol &native_thread,
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.h
   20   NativeRegisterContextLinux(NativeThreadProtocol &native_thread,
   29                                        NativeThreadProtocol &native_thread);
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
  256     const ArchSpec &target_arch, NativeThreadProtocol &native_thread) {
  295     const ArchSpec &target_arch, NativeThreadProtocol &native_thread)
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
   27                                     NativeThreadProtocol &native_thread);
tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h
   27 class NativeThreadLinux : public NativeThreadProtocol {
tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
   25       NativeThreadProtocol &thread,
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  406 GetRegistersAsJSON(NativeThreadProtocol &thread) {
  504   for (NativeThreadProtocol *thread;
  586   NativeThreadProtocol *thread = m_debugged_process_up->GetThreadByID(tid);
  646     NativeThreadProtocol *listed_thread;
  681     for (NativeThreadProtocol *thread;
 1289   NativeThreadProtocol *thread = m_debugged_process_up->GetCurrentThread();
 1663   NativeThreadProtocol *thread = m_debugged_process_up->GetThreadAtIndex(0);
 1876   NativeThreadProtocol *thread;
 1909   NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
 1973   NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
 2062   NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
 2166     NativeThreadProtocol *thread = m_debugged_process_up->GetThreadByID(tid);
 2726   NativeThreadProtocol *thread = m_debugged_process_up->GetThreadByID(tid);
 2875   NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
 2933   NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
 3215 NativeThreadProtocol *GDBRemoteCommunicationServerLLGS::GetThreadFromSuffix(
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
  206   NativeThreadProtocol *GetThreadFromSuffix(StringExtractorGDBRemote &packet);
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>