Searched refs:fdset (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/include/zephyr/posix/sys/ |
D | select.h | 25 void FD_CLR(int fd, fd_set *fdset); 26 int FD_ISSET(int fd, fd_set *fdset); 27 void FD_SET(int fd, fd_set *fdset); 28 void FD_ZERO(fd_set *fdset);
|
/Zephyr-latest/lib/posix/options/ |
D | device_io.c | 24 void FD_CLR(int fd, struct zvfs_fd_set *fdset) in FD_CLR() argument 26 return ZVFS_FD_CLR(fd, fdset); in FD_CLR() 29 int FD_ISSET(int fd, struct zvfs_fd_set *fdset) in FD_ISSET() argument 31 return ZVFS_FD_ISSET(fd, fdset); in FD_ISSET() 34 void FD_SET(int fd, struct zvfs_fd_set *fdset) in FD_SET() argument 36 ZVFS_FD_SET(fd, fdset); in FD_SET() 39 void FD_ZERO(fd_set *fdset) in FD_ZERO() argument 41 ZVFS_FD_ZERO(fdset); in FD_ZERO()
|
/Zephyr-latest/include/zephyr/sys/ |
D | fdtable.h | 233 void ZVFS_FD_CLR(int fd, struct zvfs_fd_set *fdset); 234 int ZVFS_FD_ISSET(int fd, struct zvfs_fd_set *fdset); 235 void ZVFS_FD_SET(int fd, struct zvfs_fd_set *fdset); 236 void ZVFS_FD_ZERO(struct zvfs_fd_set *fdset);
|