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

Declarations

tools/lldb/include/lldb/Host/HostNativeProcessBase.h
   19 class HostThread;
tools/lldb/include/lldb/Host/HostProcess.h
   32 class HostThread;

References

include/llvm/Support/AlignOf.h
   30   T t;
   39 template <typename T> union SizerImpl<T> { char arr[sizeof(T)]; };
   50       llvm::detail::SizerImpl<T, Ts...>)];
include/llvm/Support/Error.h
  437   static const bool isRef = std::is_reference<T>::value;
  439   using wrap = std::reference_wrapper<typename std::remove_reference<T>::type>;
  444   using storage_type = typename std::conditional<isRef, wrap, T>::type;
  445   using value_type = T;
  448   using reference = typename std::remove_reference<T>::type &;
  449   using const_reference = const typename std::remove_reference<T>::type &;
  450   using pointer = typename std::remove_reference<T>::type *;
  451   using const_pointer = const typename std::remove_reference<T>::type *;
  474   Expected(OtherT &&Val,
  475            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  475            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  483     new (getStorage()) storage_type(std::forward<OtherT>(Val));
  492   Expected(Expected<OtherT> &&Other,
  493            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  493            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  594   template <class OtherT> void moveConstruct(Expected<OtherT> &&Other) {
tools/lldb/include/lldb/Core/Communication.h
  303   HostThread m_read_thread; ///< The read thread handle in case we need to
tools/lldb/include/lldb/Core/Debugger.h
  409   HostThread m_event_handler_thread;
  410   HostThread m_io_handler_thread;
tools/lldb/include/lldb/Host/Host.h
  102   static llvm::Expected<HostThread>
tools/lldb/include/lldb/Host/HostNativeProcessBase.h
   38   virtual llvm::Expected<HostThread>
tools/lldb/include/lldb/Host/HostProcess.h
   46   llvm::Expected<HostThread>
tools/lldb/include/lldb/Host/ThreadLauncher.h
   22   static llvm::Expected<HostThread>
tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
   35   llvm::Expected<HostThread>
tools/lldb/include/lldb/Target/Process.h
 2658   HostThread m_private_state_thread; ///< Thread ID for the thread that watches
tools/lldb/source/API/SBHostOS.cpp
  110   llvm::Expected<HostThread> thread =
  134   HostThread host_thread(thread);
  152   HostThread host_thread(thread);
  169   HostThread host_thread(thread);
tools/lldb/source/Core/Debugger.cpp
 1508     llvm::Expected<HostThread> event_handler_thread =
 1550     llvm::Expected<HostThread> io_handler_thread = ThreadLauncher::LaunchThread(
tools/lldb/source/Host/common/Host.cpp
  102 llvm::Expected<HostThread> Host::StartMonitoringChildProcess(
tools/lldb/source/Host/common/HostProcess.cpp
   35 llvm::Expected<HostThread>
tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
   56     llvm::Expected<HostThread> maybe_thread =
tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
  191     llvm::Expected<HostThread> maybe_thread =
tools/lldb/source/Host/common/TaskPool.cpp
   69     llvm::Expected<HostThread> host_thread =
tools/lldb/source/Host/common/ThreadLauncher.cpp
   24 llvm::Expected<HostThread> ThreadLauncher::LaunchThread(
tools/lldb/source/Host/posix/HostProcessPosix.cpp
   90 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring(
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  894   llvm::Expected<HostThread> listen_thread = ThreadLauncher::LaunchThread(
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  214   HostThread m_listen_thread;
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  203     llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread(
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
   70   HostThread m_async_thread;
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 3627     llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread(
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  257   HostThread m_async_thread;
tools/lldb/source/Target/Process.cpp
 3525   llvm::Expected<HostThread> private_state_thread =
 4716   HostThread backup_private_state_thread;
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
   98     move(_Tp&& __t) 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
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 2171     { typedef _Iffalse type; };