Searched defs:FD_ISSET (Results 1 - 14 of 14) sorted by relevance
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | select.h | 29 #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 D | select.h | 29 #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 D | select.h | 29 #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 D | select.h | 30 #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 D | select.h | 36 #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 D | sockets.h | 478 #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 D | mod.rs | 593 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 D | mod.rs | 560 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 D | mod.rs | 925 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 D | mod.rs | 1517 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 D | mod.rs | 1548 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 D | mod.rs | 2558 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 D | mod.rs | 3173 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 D | mod.rs | 2644 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() functions
|
Completed in 44 milliseconds