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

  /external/lldb/tools/debugserver/source/
PseudoTerminal.cpp 23 m_master_fd(invalid_fd),
47 if (m_master_fd > 0)
49 ::close (m_master_fd);
50 m_master_fd = invalid_fd;
69 // permissions. The file descriptor is store in the m_master_fd member
82 m_master_fd = ::posix_openpt (oflag);
83 if (m_master_fd < 0)
89 if (::grantpt (m_master_fd) < 0)
96 if (::unlockpt (m_master_fd) < 0)
150 if (m_master_fd < 0
    [all...]
PseudoTerminal.h 54 int MasterFD () const { return m_master_fd; }
61 int fd = m_master_fd;
62 m_master_fd = invalid_fd;
82 int m_master_fd; member in class:PseudoTerminal
  /external/lldb/source/Utility/
PseudoTerminal.cpp 26 m_master_fd(invalid_fd),
51 if (m_master_fd >= 0)
53 ::close (m_master_fd);
54 m_master_fd = invalid_fd;
92 m_master_fd = ::posix_openpt (oflag);
93 if (m_master_fd < 0)
101 if (::grantpt (m_master_fd) < 0)
110 if (::unlockpt (m_master_fd) < 0)
177 if (m_master_fd < 0)
183 const char *slave_name = ::ptsname (m_master_fd);
    [all...]
  /external/lldb/include/lldb/Utility/
PseudoTerminal.h 255 int m_master_fd; ///< The file descriptor for the master. member in class:lldb_utility::PseudoTerminal

Completed in 621 milliseconds