| /f-stack/freebsd/sys/ |
| H A D | select.h | 73 typedef struct fd_set { struct 75 } fd_set; typedef 88 fd_set *_p; \ 100 int pselect(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, 105 int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
| H A D | syscallsubr.h | 240 int kern_pselect(struct thread *td, int nd, fd_set *in, fd_set *ou, 241 fd_set *ex, struct timeval *tvp, sigset_t *uset, int abi_nfdbits); 270 int kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou, 271 fd_set *fd_ex, struct timeval *tvp, int abi_nfdbits);
|
| H A D | sysproto.h | 330 char in_l_[PADL_(fd_set *)]; fd_set * in; char in_r_[PADR_(fd_set *)]; 331 char ou_l_[PADL_(fd_set *)]; fd_set * ou; char ou_r_[PADR_(fd_set *)]; 332 char ex_l_[PADL_(fd_set *)]; fd_set * ex; char ex_r_[PADR_(fd_set *)]; 1553 char in_l_[PADL_(fd_set *)]; fd_set * in; char in_r_[PADR_(fd_set *)]; 1554 char ou_l_[PADL_(fd_set *)]; fd_set * ou; char ou_r_[PADR_(fd_set *)]; 1555 char ex_l_[PADL_(fd_set *)]; fd_set * ex; char ex_r_[PADR_(fd_set *)];
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | ae_select.c | 36 fd_set rfds, wfds; 39 fd_set _rfds, _wfds; 81 memcpy(&state->_rfds,&state->rfds,sizeof(fd_set)); in aeApiPoll() 82 memcpy(&state->_wfds,&state->wfds,sizeof(fd_set)); in aeApiPoll()
|
| H A D | anet_ff.c | 127 static int (*real_select) (int, fd_set *, fd_set *, fd_set *, struct timeval *); 397 select(int nfds, fd_set *readfds, fd_set *writefds, in select() 398 fd_set *exceptfds, struct timeval *timeout) in select()
|
| /f-stack/tools/compat/include/sys/ |
| H A D | sysproto.h | 104 char in_l_[PADL_(fd_set *)]; fd_set * in; char in_r_[PADR_(fd_set *)]; 105 char ou_l_[PADL_(fd_set *)]; fd_set * ou; char ou_r_[PADR_(fd_set *)]; 106 char ex_l_[PADL_(fd_set *)]; fd_set * ex; char ex_r_[PADR_(fd_set *)]; 288 char in_l_[PADL_(fd_set *)]; fd_set * in; char in_r_[PADR_(fd_set *)]; 289 char ou_l_[PADL_(fd_set *)]; fd_set * ou; char ou_r_[PADR_(fd_set *)]; 290 char ex_l_[PADL_(fd_set *)]; fd_set * ex; char ex_r_[PADR_(fd_set *)];
|
| /f-stack/app/micro_thread/ |
| H A D | mt_sys_hook.h | 50 typedef int (*func_select)(int nfds, fd_set *readfds, fd_set *writefds, 51 fd_set *exceptfds, struct timeval *timeout);
|
| /f-stack/app/nginx-1.16.1/src/event/modules/ |
| H A D | ngx_win32_select_module.c | 25 static fd_set master_read_fd_set; 26 static fd_set master_write_fd_set; 27 static fd_set work_read_fd_set; 28 static fd_set work_write_fd_set; 29 static fd_set work_except_fd_set;
|
| H A D | ngx_select_module.c | 27 static fd_set master_read_fd_set; 28 static fd_set master_write_fd_set; 29 static fd_set work_read_fd_set; 30 static fd_set work_write_fd_set;
|
| /f-stack/lib/ |
| H A D | ff_api.h | 103 int ff_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
|
| H A D | ff_syscall_wrapper.c | 1125 ff_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in ff_select()
|
| /f-stack/tools/ngctl/ |
| H A D | main.c | 78 static void ReadSockets(fd_set *); 291 fd_set rfds; 406 fd_set rfds; 459 ReadSockets(fd_set *rfds)
|
| H A D | msg.c | 103 fd_set rfds; in MsgCmd()
|
| /f-stack/freebsd/kern/ |
| H A D | sys_generic.c | 969 kern_pselect(struct thread *td, int nd, fd_set *in, fd_set *ou, fd_set *ex, in kern_pselect() 997 fd_set *in, *ou, *ex; 1029 select_check_badfd(fd_set *fd_in, int nd, int ndu, int abi_nfdbits) in select_check_badfd() 1068 kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou, in kern_select() 1069 fd_set *fd_ex, struct timeval *tvp, int abi_nfdbits) in kern_select()
|
| /f-stack/doc/ |
| H A D | F-Stack_API_Reference.md | 140 …int ff_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *time…
|
| /f-stack/freebsd/arm64/linux/ |
| H A D | linux.h | 79 #define l_fd_set fd_set
|
| /f-stack/freebsd/amd64/linux/ |
| H A D | linux.h | 86 #define l_fd_set fd_set
|
| /f-stack/dpdk/drivers/event/dpaa/ |
| H A D | dpaa_eventdev.c | 120 static void drain_4_bytes(int fd, fd_set *fdset) in drain_4_bytes() 136 fd_set readset; in dpaa_event_dequeue_wait()
|
| /f-stack/freebsd/i386/linux/ |
| H A D | linux.h | 89 #define l_fd_set fd_set
|
| /f-stack/freebsd/amd64/linux32/ |
| H A D | linux.h | 99 #define l_fd_set fd_set
|
| /f-stack/dpdk/examples/vm_power_manager/ |
| H A D | channel_manager.c | 226 fd_set soc_fd_set; in open_non_blocking_channel()
|