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

/external/lldb/source/Core/
H A DCommunication.cpp39 m_read_thread (LLDB_INVALID_HOST_THREAD),
235 if (IS_VALID_LLDB_HOST_THREAD(m_read_thread))
246 m_read_thread = Host::ThreadCreate (thread_name, Communication::ReadThread, this, error_ptr);
247 if (!IS_VALID_LLDB_HOST_THREAD(m_read_thread))
255 if (!IS_VALID_LLDB_HOST_THREAD(m_read_thread))
265 //Host::ThreadCancel (m_read_thread, error_ptr);
267 bool status = Host::ThreadJoin (m_read_thread, NULL, error_ptr);
268 m_read_thread = LLDB_INVALID_HOST_THREAD;
/external/lldb/tools/driver/
H A DIOChannel.cpp204 m_read_thread (LLDB_INVALID_HOST_THREAD),
496 m_read_thread = 0;
502 if (IS_VALID_LLDB_HOST_THREAD(m_read_thread))
505 m_read_thread = SBHostOS::ThreadCreate ("<lldb.driver.commandline_io>", IOChannel::IOReadThread, this,
508 return (IS_VALID_LLDB_HOST_THREAD(m_read_thread));
514 if (!IS_VALID_LLDB_HOST_THREAD(m_read_thread))
526 return SBHostOS::ThreadJoin (m_read_thread, NULL, NULL);
H A DIOChannel.h134 lldb::thread_t m_read_thread; member in class:IOChannel
/external/lldb/include/lldb/Core/
H A DCommunication.h351 lldb::thread_t m_read_thread; ///< The read thread handle in case we need to cancel the thread. member in class:lldb_private::Communication

Completed in 137 milliseconds