Searched refs:ufds (Results 1 – 3 of 3) sorted by relevance
140 struct pollfd ufds[2]; in Java_sun_nio_fs_LinuxWatchService_poll() local143 ufds[0].fd = fd1; in Java_sun_nio_fs_LinuxWatchService_poll()144 ufds[0].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()145 ufds[1].fd = fd2; in Java_sun_nio_fs_LinuxWatchService_poll()146 ufds[1].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()148 n = poll(&ufds[0], 2, -1); in Java_sun_nio_fs_LinuxWatchService_poll()
171 int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout) { in NET_Poll() argument172 BLOCKING_IO_RETURN_INT( ufds[0].fd, poll(ufds, nfds, timeout) ); in NET_Poll()
62 extern int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout);