Lines Matching refs:exceptset
95 /** unimplemented: exceptset passed to select */
96 fd_set *exceptset;
1011 * set in the sets has events. On return, readset, writeset and exceptset have
1014 * exceptset is not used for now!!!
1085 * Processing exceptset is not yet implemented.
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);
1127 select_cb.exceptset = exceptset;
1155 (exceptset && FD_ISSET(i, exceptset))) {
1167 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset);
1187 (exceptset && FD_ISSET(i, exceptset))) {
1222 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset);
1234 if (exceptset) {
1235 *exceptset = lexceptset;
1338 if (!do_signal && scb->exceptset && FD_ISSET(s, scb->exceptset)) {