Home
last modified time | relevance | path

Searched refs:m_async_thread (Results 1 – 6 of 6) sorted by relevance

/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp176 m_async_thread (LLDB_INVALID_HOST_THREAD), in ProcessKDP()
432 if (!IS_VALID_LLDB_HOST_THREAD(m_async_thread)) in DoResume()
813 if (IS_VALID_LLDB_HOST_THREAD(m_async_thread)) in StartAsyncThread()
816m_async_thread = Host::ThreadCreate ("<lldb.process.kdp-remote.async>", ProcessKDP::AsyncThread, t… in StartAsyncThread()
817 return IS_VALID_LLDB_HOST_THREAD(m_async_thread); in StartAsyncThread()
831 if (IS_VALID_LLDB_HOST_THREAD(m_async_thread)) in StopAsyncThread()
833 Host::ThreadJoin (m_async_thread, NULL, NULL); in StopAsyncThread()
834 m_async_thread = LLDB_INVALID_HOST_THREAD; in StopAsyncThread()
947 process->m_async_thread = LLDB_INVALID_HOST_THREAD; in AsyncThread()
DProcessKDP.h250 lldb::thread_t m_async_thread; variable
/external/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServer.h68 lldb::thread_t m_async_thread;
DProcessGDBRemote.cpp249 m_async_thread (LLDB_INVALID_HOST_THREAD), in ProcessGDBRemote()
1302 if (!IS_VALID_LLDB_HOST_THREAD(m_async_thread)) in DoResume()
2744m_async_thread = Host::ThreadCreate ("<lldb.process.gdb-remote.async>", ProcessGDBRemote::AsyncThr… in StartAsyncThread()
2745 if (IS_VALID_LLDB_HOST_THREAD(m_async_thread)) in StartAsyncThread()
2783 if (IS_VALID_LLDB_HOST_THREAD(m_async_thread)) in StopAsyncThread()
2785 Host::ThreadJoin (m_async_thread, NULL, NULL); in StopAsyncThread()
2915 process->m_async_thread = LLDB_INVALID_HOST_THREAD; in AsyncThread()
DProcessGDBRemote.h318 lldb::thread_t m_async_thread; variable
DGDBRemoteCommunicationServer.cpp40 m_async_thread (LLDB_INVALID_HOST_THREAD), in GDBRemoteCommunicationServer()