Searched defs:FD_SET (Results 1 - 14 of 14) sorted by relevance
| /third_party/musl/porting/liteos_m/kernel/include/sys/ |
| H A D | select.h | 27 #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 D | select.h | 27 #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 D | select.h | 27 #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 D | select.h | 28 #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 D | select.h | 34 #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 D | sockets.h | 476 #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 D | mod.rs | 599 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 D | mod.rs | 566 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 D | mod.rs | 931 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 D | mod.rs | 1523 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 D | mod.rs | 1554 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 D | mod.rs | 2564 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
|
| /third_party/rust/crates/libc/src/fuchsia/ |
| H A D | mod.rs | 3179 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 D | mod.rs | 2650 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() functions
|
Completed in 48 milliseconds