Searched refs:ufds (Results 1 – 3 of 3) sorted by relevance
136 struct pollfd ufds[2]; in Java_sun_nio_fs_LinuxWatchService_poll() local139 ufds[0].fd = fd1; in Java_sun_nio_fs_LinuxWatchService_poll()140 ufds[0].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()141 ufds[1].fd = fd2; in Java_sun_nio_fs_LinuxWatchService_poll()142 ufds[1].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()144 n = poll(&ufds[0], 2, -1); in Java_sun_nio_fs_LinuxWatchService_poll()
165 int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout) { in NET_Poll() argument166 BLOCKING_IO_RETURN_INT( ufds[0].fd, poll(ufds, nfds, timeout) ); in NET_Poll()
59 extern int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout);