Lines Matching refs:readyMasks

323     SelectMasks readyMasks;	/* This array reflects the readable/writable  member
1214 FD_CLR(filePtr->fd, &tsdPtr->readyMasks.readable); in FileHandlerEventProc()
1217 FD_CLR(filePtr->fd, &tsdPtr->readyMasks.writable); in FileHandlerEventProc()
1220 FD_CLR(filePtr->fd, &tsdPtr->readyMasks.exceptional); in FileHandlerEventProc()
1370 SelectMasks readyMasks; in QueueFileEvents() local
1379 FD_COPY(&tsdPtr->readyMasks.readable, &readyMasks.readable); in QueueFileEvents()
1380 FD_COPY(&tsdPtr->readyMasks.writable, &readyMasks.writable); in QueueFileEvents()
1381 FD_COPY(&tsdPtr->readyMasks.exceptional, &readyMasks.exceptional); in QueueFileEvents()
1382 FD_ZERO(&tsdPtr->readyMasks.readable); in QueueFileEvents()
1383 FD_ZERO(&tsdPtr->readyMasks.writable); in QueueFileEvents()
1384 FD_ZERO(&tsdPtr->readyMasks.exceptional); in QueueFileEvents()
1392 if (FD_ISSET(filePtr->fd, &readyMasks.readable)) { in QueueFileEvents()
1395 if (FD_ISSET(filePtr->fd, &readyMasks.writable)) { in QueueFileEvents()
1398 if (FD_ISSET(filePtr->fd, &readyMasks.exceptional)) { in QueueFileEvents()
1878 SelectMasks readyMasks, checkMasks; in NotifierThreadProc() local
1886 FD_ZERO(&readyMasks.readable); in NotifierThreadProc()
1887 FD_ZERO(&readyMasks.writable); in NotifierThreadProc()
1888 FD_ZERO(&readyMasks.exceptional); in NotifierThreadProc()
1893 FD_SET(i, &readyMasks.readable); in NotifierThreadProc()
1898 FD_SET(i, &readyMasks.writable); in NotifierThreadProc()
1903 FD_SET(i, &readyMasks.exceptional); in NotifierThreadProc()
1919 FD_COPY(&readyMasks.readable, &tsdPtr->readyMasks.readable); in NotifierThreadProc()
1920 FD_COPY(&readyMasks.writable, &tsdPtr->readyMasks.writable); in NotifierThreadProc()
1921 FD_COPY(&readyMasks.exceptional, in NotifierThreadProc()
1922 &tsdPtr->readyMasks.exceptional); in NotifierThreadProc()