Home
last modified time | relevance | path

Searched refs:FD_ISSET (Results 1 – 2 of 2) sorted by relevance

/lk-master/external/lib/lwip/api/
A Dsockets.c1063 if (writeset_in && FD_ISSET(i, writeset_in) && (sendevent != 0)) {
1069 if (exceptset_in && FD_ISSET(i, exceptset_in) && (errevent != 0)) {
1153 if ((readset && FD_ISSET(i, readset)) ||
1154 (writeset && FD_ISSET(i, writeset)) ||
1155 (exceptset && FD_ISSET(i, exceptset))) {
1185 if ((readset && FD_ISSET(i, readset)) ||
1186 (writeset && FD_ISSET(i, writeset)) ||
1187 (exceptset && FD_ISSET(i, exceptset))) {
1328 if (scb->readset && FD_ISSET(s, scb->readset)) {
1333 if (!do_signal && scb->writeset && FD_ISSET(s, scb->writeset)) {
[all …]
/lk-master/external/lib/lwip/include/lwip/
A Dsockets.h297 #define FD_ISSET(n,p) ((p)->fd_bits[(n)/8] & (1 << ((n) & 7))) macro

Completed in 5 milliseconds