Home
last modified time | relevance | path

Searched refs:m_read_thread (Results 1 – 4 of 4) sorted by relevance

/external/lldb/source/Core/
DCommunication.cpp39 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/
DIOChannel.cpp204 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()
505m_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()
DIOChannel.h134 lldb::thread_t m_read_thread; variable
/external/lldb/include/lldb/Core/
DCommunication.h351 lldb::thread_t m_read_thread; ///< The read thread handle in case we need to cancel the thread. variable