Lines Matching refs:m_fd_map
41 : m_fd_map(), m_end_time() // Infinite timeout unless in SelectHelper()
51 m_fd_map[fd].read_set = true; in FDSetRead()
55 m_fd_map[fd].write_set = true; in FDSetWrite()
59 m_fd_map[fd].error_set = true; in FDSetError()
63 auto pos = m_fd_map.find(fd); in FDIsSetRead()
64 if (pos != m_fd_map.end()) in FDIsSetRead()
71 auto pos = m_fd_map.find(fd); in FDIsSetWrite()
72 if (pos != m_fd_map.end()) in FDIsSetWrite()
79 auto pos = m_fd_map.find(fd); in FDIsSetError()
80 if (pos != m_fd_map.end()) in FDIsSetError()
99 lldbassert(m_fd_map.size() <= FD_SETSIZE); in Select()
100 if (m_fd_map.size() > FD_SETSIZE) in Select()
108 for (auto &pair : m_fd_map) { in Select()
183 for (auto &pair : m_fd_map) { in Select()
243 for (auto &pair : m_fd_map) { in Select()