Home
last modified time | relevance | path

Searched refs:m_fd_map (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DSelectHelper.cpp50 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()
107 for (auto &pair : m_fd_map) { in Select()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DSelectHelper.h67 llvm::DenseMap<lldb::socket_t, FDInfo> m_fd_map; variable