Searched refs:m_read_thread (Results 1 – 4 of 4) sorted by relevance
/external/lldb/source/Core/ |
D | Communication.cpp | 39 m_read_thread (LLDB_INVALID_HOST_THREAD), in Communication() 235 if (IS_VALID_LLDB_HOST_THREAD(m_read_thread)) in StartReadThread() 246 m_read_thread = Host::ThreadCreate (thread_name, Communication::ReadThread, this, error_ptr); in StartReadThread() 247 if (!IS_VALID_LLDB_HOST_THREAD(m_read_thread)) in StartReadThread() 255 if (!IS_VALID_LLDB_HOST_THREAD(m_read_thread)) in StopReadThread() 267 bool status = Host::ThreadJoin (m_read_thread, NULL, error_ptr); in StopReadThread() 268 m_read_thread = LLDB_INVALID_HOST_THREAD; in StopReadThread()
|
/external/lldb/tools/driver/ |
D | IOChannel.cpp | 204 m_read_thread (LLDB_INVALID_HOST_THREAD), in IOChannel() 496 m_read_thread = 0; in Run() 502 if (IS_VALID_LLDB_HOST_THREAD(m_read_thread)) in Start() 505 …m_read_thread = SBHostOS::ThreadCreate ("<lldb.driver.commandline_io>", IOChannel::IOReadThread, t… in Start() 508 return (IS_VALID_LLDB_HOST_THREAD(m_read_thread)); in Start() 514 if (!IS_VALID_LLDB_HOST_THREAD(m_read_thread)) in Stop() 526 return SBHostOS::ThreadJoin (m_read_thread, NULL, NULL); in Stop()
|
D | IOChannel.h | 134 lldb::thread_t m_read_thread; variable
|
/external/lldb/include/lldb/Core/ |
D | Communication.h | 351 lldb::thread_t m_read_thread; ///< The read thread handle in case we need to cancel the thread. variable
|