Lines Matching refs:m_fd_map
40 : m_fd_map(), m_end_time() // Infinite timeout unless in SelectHelper()
50 m_fd_map[fd].read_set = true; in FDSetRead()
54 m_fd_map[fd].write_set = true; in FDSetWrite()
58 m_fd_map[fd].error_set = true; in FDSetError()
62 auto pos = m_fd_map.find(fd); in FDIsSetRead()
63 if (pos != m_fd_map.end()) in FDIsSetRead()
70 auto pos = m_fd_map.find(fd); in FDIsSetWrite()
71 if (pos != m_fd_map.end()) in FDIsSetWrite()
78 auto pos = m_fd_map.find(fd); in FDIsSetError()
79 if (pos != m_fd_map.end()) in FDIsSetError()
98 lldbassert(m_fd_map.size() <= FD_SETSIZE); in Select()
99 if (m_fd_map.size() > FD_SETSIZE) in Select()
107 for (auto &pair : m_fd_map) { in Select()
178 for (auto &pair : m_fd_map) { in Select()
234 for (auto &pair : m_fd_map) { in Select()