Home
last modified time | relevance | path

Searched defs:FD_SET (Results 1 – 6 of 6) sorted by relevance

/third_party/musl/include/sys/
Dselect.h28 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
34 #define FD_SET(d, s) do { __fd_chk(d); ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof… macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dselect.h34 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/musl/porting/uniproton/kernel/include/sys/
Dselect.h27 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dselect.h27 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dselect.h27 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/lwip/src/include/lwip/
Dsockets.h476 #define FD_SET(n, p) FDSETSAFESET(n, (p)->fd_bits[((n)-LWIP_SOCKET_OFFSET)/8] = (u8_t)((p)->fd_bit… macro