reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Utility/SelectHelper.h
   35   void FDSetRead(lldb::socket_t fd);
   36   void FDSetWrite(lldb::socket_t fd);
   37   void FDSetError(lldb::socket_t fd);
   43   bool FDIsSetRead(lldb::socket_t fd) const;
   44   bool FDIsSetWrite(lldb::socket_t fd) const;
   45   bool FDIsSetError(lldb::socket_t fd) const;
   67   llvm::DenseMap<lldb::socket_t, FDInfo> m_fd_map;
tools/lldb/source/Utility/SelectHelper.cpp
   49 void SelectHelper::FDSetRead(lldb::socket_t fd) {
   53 void SelectHelper::FDSetWrite(lldb::socket_t fd) {
   57 void SelectHelper::FDSetError(lldb::socket_t fd) {
   61 bool SelectHelper::FDIsSetRead(lldb::socket_t fd) const {
   69 bool SelectHelper::FDIsSetWrite(lldb::socket_t fd) const {
   77 bool SelectHelper::FDIsSetError(lldb::socket_t fd) const {
   85 static void updateMaxFd(llvm::Optional<lldb::socket_t> &vold,
   86                         lldb::socket_t vnew) {
  103   llvm::Optional<lldb::socket_t> max_read_fd;
  104   llvm::Optional<lldb::socket_t> max_write_fd;
  105   llvm::Optional<lldb::socket_t> max_error_fd;
  106   llvm::Optional<lldb::socket_t> max_fd;
  109     const lldb::socket_t fd = pair.first;
  179     const lldb::socket_t fd = pair.first;