HomeSort by relevance Sort by last modified time
    Searched refs:m_read_thread (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Core/
Communication.cpp 39 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/
IOChannel.cpp 204 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);
IOChannel.h 134 lldb::thread_t m_read_thread; member in class:IOChannel
  /external/lldb/include/lldb/Core/
Communication.h 351 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 89 milliseconds