Searched refs:m_fd_map (Results 1 – 2 of 2) sorted by relevance
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()108 for (auto &pair : m_fd_map) { in Select()[all …]
68 llvm::DenseMap<lldb::socket_t, FDInfo> m_fd_map; variable