Searched refs:m_fd_map (Results 1 – 2 of 2) sorted by relevance
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()[all …]
67 llvm::DenseMap<lldb::socket_t, FDInfo> m_fd_map; variable