Home
last modified time | relevance | path

Searched defs:FD_SET (Results 1 - 14 of 14) sorted by relevance

/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dselect.h27 #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/
H A 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/
H A Dselect.h27 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/musl/include/sys/
H A 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(long))))); } while(0) macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dselect.h34 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/lwip/src/include/lwip/
H A Dsockets.h476 #define FD_SET(n, p) FDSETSAFESET(n, (p)->fd_bits[((n)-LWIP_SOCKET_OFFSET)/8] = (u8_t)((p)->fd_bits[((n)-LWIP_SOCKET_OFFSET)/8] | (1 << (((n)-LWIP_SOCKET_OFFSET) & 7)))) macro
/third_party/rust/crates/libc/src/unix/newlib/
H A Dmod.rs599 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/unix/bsd/
H A Dmod.rs566 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/unix/redox/
H A Dmod.rs931 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/unix/haiku/
H A Dmod.rs1523 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/unix/linux_like/
H A Dmod.rs1554 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs2564 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3179 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs2650 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions

Completed in 44 milliseconds