Searched refs:pollfd (Results 26 - 50 of 182) sorted by relevance

12345678

/freebsd-current/contrib/netbsd-tests/net/fdpass/
H A Dfdpass.c58 struct pollfd pfd;
111 struct pollfd pfd;
/freebsd-current/crypto/openssh/
H A Dmonitor_fdpass.c66 struct pollfd pfd;
127 struct pollfd pfd;
H A Datomicio.c57 struct pollfd pfd;
112 struct pollfd pfd;
H A Dchannels.h141 int pfds[4]; /* pollfd entries for rfd/wfd/efd/sock */
333 struct pollfd;
336 void channel_prepare_poll(struct ssh *, struct pollfd **,
338 void channel_after_poll(struct ssh *, struct pollfd *, u_int);
/freebsd-current/tools/regression/security/cap_test/
H A Dcap_test_capabilities.c122 struct pollfd pollfd; local
391 pollfd.fd = fd_cap;
392 pollfd.events = POLLIN | POLLERR | POLLHUP;
393 pollfd.revents = 0;
395 ret = poll(&pollfd, 1, 0);
397 CHECK((pollfd.revents & POLLNVAL) == 0);
399 CHECK((pollfd.revents & POLLNVAL) != 0);
/freebsd-current/contrib/netbsd-tests/kernel/kqueue/write/
H A Dt_ttypty.c58 struct pollfd pfd;
/freebsd-current/contrib/wpa/src/utils/
H A Deloop.c84 struct pollfd *pollfds;
85 struct pollfd **pollfds_map;
286 struct pollfd **nmap;
288 sizeof(struct pollfd *));
297 struct pollfd *n;
301 sizeof(struct pollfd));
435 static struct pollfd * find_pollfd(struct pollfd **pollfds_map, int fd, int mx)
446 struct pollfd *pollfds,
447 struct pollfd **pollfds_ma
[all...]
/freebsd-current/tools/regression/netinet/tcpfullwindowrst/
H A Dtcpfullwindowrsttest.c65 struct pollfd pfd[2];
/freebsd-current/tests/sys/audit/
H A Dfile-write.c31 static struct pollfd fds[1];
H A Dfile-read.c31 static struct pollfd fds[1];
/freebsd-current/contrib/sendmail/libmilter/
H A Dworker.c345 /* Poll structure array (pollfd) size step */
355 struct pollfd *pfd = NULL;
368 pfd = (struct pollfd *) malloc(PFD_STEP * sizeof(struct pollfd));
371 smi_log(SMI_LOG_ERR, "Failed to malloc pollfd array: %s",
452 /* add the session to the pollfd array? */
457 ** Resize the pollfd array if it
463 struct pollfd *tpfd;
468 tpfd = (struct pollfd *)
478 "Failed to realloc pollfd arra
[all...]
H A Dlibmilter.h178 # define FD_RD_VAR(rds, excs) struct pollfd rds
179 # define FD_WR_VAR(wrs) struct pollfd wrs
/freebsd-current/contrib/ofed/librdmacm/examples/
H A Driostream.c148 struct pollfd fds;
177 struct pollfd fds;
206 struct pollfd fds;
409 struct pollfd fds;
440 struct pollfd fds;
H A Dcommon.c154 int do_poll(struct pollfd *fds, int timeout)
H A Dudpong.c172 struct pollfd fds;
199 struct pollfd fds;
311 struct pollfd fds;
337 struct pollfd fds;
/freebsd-current/tools/tools/netmap/
H A Dlb.c875 struct pollfd pollfd[npipes + 1]; local
876 memset(&pollfd, 0, sizeof(pollfd));
913 pollfd[polli].fd = ports[i].nmd->fd;
914 pollfd[polli].events = POLLOUT;
915 pollfd[polli].revents = 0;
919 pollfd[polli].fd = rxport->nmd->fd;
920 pollfd[polli].events = POLLIN;
921 pollfd[poll
[all...]
/freebsd-current/contrib/netbsd-tests/kernel/kqueue/read/
H A Dt_ttypty.c62 struct pollfd pfd;
/freebsd-current/contrib/netbsd-tests/lib/librumphijack/
H A Dh_client.c97 struct pollfd pfd[2];
/freebsd-current/contrib/ofed/librdmacm/
H A Drsocket.h69 int rpoll(struct pollfd *fds, nfds_t nfds, int timeout);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_solaris.cpp263 CHECK_TYPE_SIZE(pollfd); variable
264 CHECK_SIZE_AND_OFFSET(pollfd, fd);
265 CHECK_SIZE_AND_OFFSET(pollfd, events);
266 CHECK_SIZE_AND_OFFSET(pollfd, revents);
/freebsd-current/tools/test/stress2/misc/
H A Dpoll2.sh138 struct pollfd pfd;
H A Dsocketpair3.sh136 struct pollfd pfd = { .fd = child_fd };
/freebsd-current/usr.bin/talk/
H A Dio.c67 struct pollfd fds[2];
/freebsd-current/contrib/ofed/opensm/opensm/
H A Dosm_console.c1833 struct pollfd pollfd[2]; local
1837 struct pollfd *fds;
1841 pollfd[0].fd = p_oct->socket;
1842 pollfd[0].events = POLLIN;
1843 pollfd[0].revents = 0;
1845 pollfd[1].fd = p_oct->in_fd;
1846 pollfd[1].events = POLLIN;
1847 pollfd[1].revents = 0;
1849 fds = p_oct->socket < 0 ? &pollfd[
[all...]
/freebsd-current/contrib/tnftp/src/
H A Dextern.h248 int ftp_poll(struct pollfd *, int, int);

Completed in 320 milliseconds

12345678