Home | History | Annotate | Download | only in os

Lines Matching refs:FD_SET

134 fd_set WellKnownConnections;	/* Listener mask */
135 fd_set EnabledDevices; /* mask for input devices that are on */
136 fd_set AllSockets; /* select on this */
137 fd_set AllClients; /* available clients */
138 fd_set LastSelectMask; /* mask returned from last select call */
139 fd_set ClientsWithInput; /* clients with FULL requests in buffer */
140 fd_set ClientsWriteBlocked; /* clients who cannot receive output */
141 fd_set OutputPending; /* clients with reply/event data ready to go */
154 fd_set IgnoredClientsWithInput;
155 static fd_set GrabImperviousClients;
156 static fd_set SavedAllClients;
157 static fd_set SavedAllSockets;
158 static fd_set SavedClientsWithInput;
409 FD_SET (fd, &WellKnownConnections);
473 FD_SET(newfd, &WellKnownConnections);
758 FD_SET(fd, &SavedAllClients);
759 FD_SET(fd, &SavedAllSockets);
763 FD_SET(fd, &AllClients);
764 FD_SET(fd, &AllSockets);
789 fd_set readyconnections; /* set of listeners that are ready */
796 fd_set tmask;
798 XFD_ANDSET (&tmask, (fd_set*)closure, &WellKnownConnections);
889 fd_set mask;
896 FD_SET(fd, &mask);
974 fd_set tmask;
980 fd_set savedAllClients;
995 FD_SET(curclient, &tmask);
1011 FD_SET(curclient, &tmask);
1052 FD_SET(fd, &AllSockets);
1054 FD_SET(fd, &SavedAllSockets);
1060 FD_SET(fd, &EnabledDevices);
1107 FD_SET(connection, &ClientsWithInput);
1114 FD_SET(connection, &AllClients);
1158 FD_SET(connection, &IgnoredClientsWithInput);
1169 FD_SET(connection, &IgnoredClientsWithInput);
1196 FD_SET(connection, &AllClients);
1197 FD_SET(connection, &AllSockets);
1198 FD_SET(connection, &LastSelectMask);
1200 FD_SET(connection, &ClientsWithInput);
1204 FD_SET(connection, &SavedAllClients);
1205 FD_SET(connection, &SavedAllSockets);
1207 FD_SET(connection, &SavedClientsWithInput);
1219 FD_SET(connection, &GrabImperviousClients);
1243 FD_SET(connection, &SavedClientsWithInput);
1295 FD_SET(fd, &WellKnownConnections);
1296 FD_SET(fd, &AllSockets);