Searched refs:ufds (Results 1 – 3 of 3) sorted by relevance
142 struct pollfd ufds[2]; in Java_sun_nio_fs_LinuxWatchService_poll() local145 ufds[0].fd = fd1; in Java_sun_nio_fs_LinuxWatchService_poll()146 ufds[0].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()147 ufds[1].fd = fd2; in Java_sun_nio_fs_LinuxWatchService_poll()148 ufds[1].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()150 n = poll(&ufds[0], 2, -1); in Java_sun_nio_fs_LinuxWatchService_poll()
170 int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout) { in NET_Poll() argument171 BLOCKING_IO_RETURN_INT( ufds[0].fd, poll(ufds, nfds, timeout) ); in NET_Poll()
66 extern int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout);