Lines Matching refs:readset
91 /** readset passed to select */
92 fd_set *readset;
1010 * Go through the readset and writeset lists and see which socket of the sockets
1011 * set in the sets has events. On return, readset, writeset and exceptset have
1088 lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
1101 maxfdp1, (void *)readset, (void *) writeset, (void *) exceptset,
1107 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset);
1125 select_cb.readset = readset;
1153 if ((readset && FD_ISSET(i, readset)) ||
1167 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset);
1185 if ((readset && FD_ISSET(i, readset)) ||
1222 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset);
1228 if (readset) {
1229 *readset = lreadset;
1328 if (scb->readset && FD_ISSET(s, scb->readset)) {