Home
last modified time | relevance | path

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

/lib/liblwip/src/api/
Dsockets.c1057 if (readset_in && FD_ISSET(i, readset_in) && ((lastdata != NULL) || (rcvevent > 0))) {
1063 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)) {
[all …]
/lib/liblwip/src/include/lwip/
Dsockets.h297 #define FD_ISSET(n,p) ((p)->fd_bits[(n)/8] & (1 << ((n) & 7))) macro