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

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
33234   lldb::thread_result_t *arg2 = (lldb::thread_result_t *) 0 ;
tools/lldb/include/lldb/API/SBHostOS.h
   36   static bool ThreadJoin(lldb::thread_t thread, lldb::thread_result_t *result,
tools/lldb/include/lldb/Core/Communication.h
  276   static lldb::thread_result_t ReadThread(lldb::thread_arg_t comm_ptr);
tools/lldb/include/lldb/Core/Debugger.h
  338   static lldb::thread_result_t EventHandlerThread(lldb::thread_arg_t arg);
  348   static lldb::thread_result_t IOHandlerThread(lldb::thread_arg_t arg);
tools/lldb/include/lldb/Host/HostNativeThreadBase.h
   33   virtual Status Join(lldb::thread_result_t *result) = 0;
   41   lldb::thread_result_t GetResult() const;
   44   static lldb::thread_result_t THREAD_ROUTINE
   48   lldb::thread_result_t m_result;
tools/lldb/include/lldb/Host/HostThread.h
   34   Status Join(lldb::thread_result_t *result);
   42   lldb::thread_result_t GetResult() const;
tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
   24   Status Join(lldb::thread_result_t *result) override;
tools/lldb/include/lldb/Target/Process.h
 2784   static lldb::thread_result_t PrivateStateThread(void *arg);
 2791   lldb::thread_result_t RunPrivateStateThread(bool is_secondary_thread);
tools/lldb/source/API/SBHostOS.cpp
  161 bool SBHostOS::ThreadJoin(lldb::thread_t thread, lldb::thread_result_t *result,
tools/lldb/source/Core/Communication.cpp
  306 lldb::thread_result_t Communication::ReadThread(lldb::thread_arg_t p) {
tools/lldb/source/Core/Debugger.cpp
 1486 lldb::thread_result_t Debugger::EventHandlerThread(lldb::thread_arg_t arg) {
 1539 lldb::thread_result_t Debugger::IOHandlerThread(lldb::thread_arg_t arg) {
 1573     thread_result_t result;
tools/lldb/source/Host/common/Host.cpp
  100 static thread_result_t MonitorChildProcessThreadFunction(void *arg);
  164 static thread_result_t MonitorChildProcessThreadFunction(void *arg) {
tools/lldb/source/Host/common/HostNativeThreadBase.cpp
   30 lldb::thread_result_t HostNativeThreadBase::GetResult() const {
   55 lldb::thread_result_t
tools/lldb/source/Host/common/HostThread.cpp
   20 Status HostThread::Join(lldb::thread_result_t *result) {
   40 lldb::thread_result_t HostThread::GetResult() const {
tools/lldb/source/Host/common/TaskPool.cpp
   29   static lldb::thread_result_t WorkerPtr(void *pool);
   82 lldb::thread_result_t TaskPoolImpl::WorkerPtr(void *pool) {
tools/lldb/source/Host/posix/HostThreadPosix.cpp
   25 Status HostThreadPosix::Join(lldb::thread_result_t *result) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  909 lldb::thread_result_t
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  193   static lldb::thread_result_t ListenThread(lldb::thread_arg_t arg);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  253 thread_result_t GDBRemoteCommunicationReplayServer::AsyncThread(void *arg) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
   62   static lldb::thread_result_t AsyncThread(void *arg);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 3692 thread_result_t ProcessGDBRemote::AsyncThread(void *arg) {
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  346   static lldb::thread_result_t AsyncThread(void *arg);
tools/lldb/source/Target/Process.cpp
 3599       thread_result_t result = {};
 3743 thread_result_t Process::PrivateStateThread(void *arg) {
 3746   thread_result_t result =
 3751 thread_result_t Process::RunPrivateStateThread(bool is_secondary_thread) {