/src/sys/sys/ |
poll.h | 39 struct pollfd { struct 76 int pollcommon(register_t *, struct pollfd *, u_int, 83 int poll(struct pollfd *, nfds_t, int); 97 int pollts(struct pollfd * __restrict, nfds_t, 101 int ppoll(struct pollfd * __restrict, nfds_t,
|
/src/tests/kernel/ |
t_signal_and_sp.c | 73 struct pollfd pollfd; local in function:test_execsp 114 pollfd.fd = fd[0]; 115 pollfd.events = POLLIN; 116 RL(nfds = poll(&pollfd, 1, 5*1000/*ms*/));
|
/src/lib/libc/resolv/ |
res_send.c | 886 struct pollfd pollfd; local in function:send_dg 1008 pollfd.fd = s; 1009 pollfd.events = POLLRDNORM; 1010 n = poll(&pollfd, 1, polltimeout);
|
/src/usr.sbin/isibootd/ |
isibootd.c | 131 struct pollfd pollfd; local in function:main 183 pollfd.fd = station.fd; 184 pollfd.events = POLLIN; 186 poll(&pollfd, 1, INFTIM); 187 read(pollfd.fd, iobuf, iolen); /* returns 1468 */ 272 write(pollfd.fd, fp, ISIBOOT_FRAMELEN);
|
/src/lib/libc/rpc/ |
svc_vc.c | 468 struct pollfd pollfd; local in function:read_vc 534 pollfd.fd = sock; 535 pollfd.events = POLLIN; 536 switch (pollts(&pollfd, 1, &ts, NULL)) { 548 } while ((pollfd.revents & POLLIN) == 0);
|
/src/usr.bin/make/ |
job.c | 137 #define pollfd emul_pollfd macro 148 int emul_poll(struct pollfd *, int, int); 151 struct pollfd; 213 struct pollfd *inPollfd; /* pollfd associated with inPipe */ 494 static struct pollfd *fds = NULL; 2020 * descriptor too, which at the moment is any pollfd other 2715 emul_poll(struct pollfd *fd, int nfd, int timeout)
|