Home
last modified time | relevance | path

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

/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dselect.h29 #define FD_ISSET(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.h29 #define FD_ISSET(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.h29 #define FD_ISSET(d, s) !!((s)->fds_bits[(d)/(8*sizeof(long))] & (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/musl/include/sys/
H A Dselect.h30 #define FD_ISSET(d, s) !!((s)->fds_bits[(d)/(8*sizeof(long))] & (1UL<<((d)%(8*sizeof(long))))) macro
36 #define FD_ISSET(d, s) (0 <= (d) && (d) < FD_SETSIZE && (!!((s)->fds_bits[(d)/(8*sizeof(long))] & (1UL<<((d)%(8*sizeof(long))))))) macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dselect.h36 #define FD_ISSET(d, s) !!((s)->fds_bits[(d)/(8*sizeof(long))] & (1UL<<((d)%(8*sizeof(long))))) macro
/third_party/lwip/src/include/lwip/
H A Dsockets.h478 #define FD_ISSET(n,p) FDSETSAFEGET(n, (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.rs593 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/unix/bsd/
H A Dmod.rs560 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/unix/redox/
H A Dmod.rs925 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/unix/haiku/
H A Dmod.rs1517 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/unix/linux_like/
H A Dmod.rs1548 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs2558 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3173 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs2644 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions

Completed in 44 milliseconds