Home
last modified time | relevance | path

Searched refs:POLLIN (Results 1 – 21 of 21) sorted by relevance

/libcore/ojluni/src/main/native/
DLinuxWatchService.c140 ufds[0].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()
142 ufds[1].events = POLLIN; in Java_sun_nio_fs_LinuxWatchService_poll()
Dlinux_close.cpp215 pfd.events = POLLIN | POLLERR; in NET_Timeout()
Dnet_util_md.c1350 pfd.events |= POLLIN; in NET_Wait()
DNet.c792 return (jshort)POLLIN; in Java_sun_nio_ch_Net_pollinValue()
/libcore/ojluni/src/main/java/java/net/
DPlainSocketImpl.java49 import static android.system.OsConstants.POLLIN;
181 IoBridge.poll(fd, POLLIN | POLLERR, -1); in socketAccept()
183 IoBridge.poll(fd, POLLIN | POLLERR, timeout); in socketAccept()
DPlainDatagramSocketImpl.java43 import static android.system.OsConstants.POLLIN;
149 IoBridge.poll(fd, POLLIN | POLLERR, timeout); in doRecv()
/libcore/ojluni/src/main/java/sun/nio/ch/
DSourceChannelImpl.java131 if (((ops & Net.POLLIN) != 0) && in translateReadyOps()
149 ops = Net.POLLIN; in translateAndSetInterestOps()
DPollArrayWrapper.java59 putEventOps(0, Net.POLLIN); in initInterrupt()
DUnixAsynchronousServerSocketChannelImpl.java176 port.startPoll(fdVal, Net.POLLIN); in onEvent()
327 port.startPoll(fdVal, Net.POLLIN); in implAccept()
DServerSocketChannelImpl.java335 if (((ops & Net.POLLIN) != 0) && in translateReadyOps()
381 newOps |= Net.POLLIN; in translateAndSetInterestOps()
DDatagramSocketAdaptor.java190 int result = dc.poll(Net.POLLIN, to); in receive()
192 ((result & Net.POLLIN) != 0)) { in receive()
DServerSocketAdaptor.java116 int result = ssc.poll(Net.POLLIN, to); in accept()
DEPollPort.java96 epollCtl(epfd, EPOLL_CTL_ADD, sv[0], Net.POLLIN); in EPollPort()
DNet.java616 public static final short POLLIN;
632 POLLIN = pollinValue();
DUnixAsynchronousSocketChannelImpl.java161 events |= Net.POLLIN; in updateEvents()
223 boolean readable = (events & Net.POLLIN) > 0; in onEvent()
DSocketAdaptor.java219 int result = sc.poll(Net.POLLIN, to); in read()
DDatagramChannelImpl.java1125 if (((ops & Net.POLLIN) != 0) && in translateReadyOps()
1174 newOps |= Net.POLLIN; in translateAndSetInterestOps()
1178 newOps |= Net.POLLIN; in translateAndSetInterestOps()
DSocketChannelImpl.java965 if (((ops & Net.POLLIN) != 0) && in translateReadyOps()
1022 newOps |= Net.POLLIN; in translateAndSetInterestOps()
/libcore/luni/src/test/java/libcore/java/nio/channels/
DDatagramChannelMulticastTest.java41 import static android.system.OsConstants.POLLIN;
790 IoBridge.poll(receivingChannel.socket().getFileDescriptor$(), POLLIN, 1000); in test_block_filtersAsExpected() local
802 IoBridge.poll(receivingChannel.socket().getFileDescriptor$(), POLLIN, 1000); in test_block_filtersAsExpected() local
815 IoBridge.poll(receivingChannel.socket().getFileDescriptor$(), POLLIN, 1000); in test_block_filtersAsExpected() local
/libcore/luni/src/main/java/android/system/
DOsConstants.java382 public static final int POLLIN = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp407 initConstant(env, c, "POLLIN", POLLIN); in OsConstants_initConstants()