HomeSort by relevance Sort by last modified time
    Searched refs:POLLOUT (Results 26 - 50 of 163) sorted by null

12 3 4 5 6 7

  /external/adhd/cras/src/server/
cras_dbus.c 25 pollfd.events = POLLIN | POLLOUT;
34 if (pollfd.revents & POLLOUT)
  /libcore/ojluni/src/main/java/sun/nio/ch/
SinkChannelImpl.java 130 if (((ops & Net.POLLOUT) != 0) &&
148 ops = Net.POLLOUT;
  /external/libusb/libusb/os/
poll_windows.h 62 #define POLLOUT 0x0004 /* Writing now will not block */
  /external/ltp/testcases/kernel/syscalls/vmsplice/
vmsplice01.c 84 struct pollfd pfd = {.fd = pipes[1], .events = POLLOUT};
  /libcore/ojluni/src/main/native/
SocketChannelImpl.c 65 poller.events = POLLOUT;
  /prebuilts/go/darwin-x86/src/runtime/
defs_solaris.go 127 POLLOUT = C.POLLOUT
  /prebuilts/go/linux-x86/src/runtime/
defs_solaris.go 127 POLLOUT = C.POLLOUT
  /system/core/adb/
fdevent.cpp 183 node.pollfd.events |= POLLOUT;
185 node.pollfd.events &= ~POLLOUT;
227 if (pollfd.events & POLLOUT) {
255 if (pollfd.revents & POLLOUT) {
  /external/ltp/testcases/kernel/syscalls/ppoll/
ppoll01.c 97 .expect_revents = POLLIN | POLLOUT,
192 fds_good[0].events = POLLIN | POLLPRI | POLLOUT | POLLRDHUP;
198 fds_already_closed[0].events = POLLIN | POLLPRI | POLLOUT | POLLRDHUP;
  /external/python/cpython2/Lib/test/
test_poll.py 47 p.register(wr, select.POLLOUT)
57 ready_writers = find_ready_matching(ready, select.POLLOUT)
201 pollster.register(w, select.POLLOUT)
  /external/python/cpython3/Lib/test/
test_poll.py 48 p.register(wr, select.POLLOUT)
58 ready_writers = find_ready_matching(ready, select.POLLOUT)
204 pollster.register(w, select.POLLOUT)
test_devpoll.py 42 p.register(wr, select.POLLOUT)
52 ready_writers = find_ready_matching(ready, select.POLLOUT)
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
DevGenisis.c 40 return ((POLLIN | POLLRDNORM | POLLOUT) & Events);
  /external/libevent/
evport.c 102 (FDI_HAS_WRITE(fdi) ? POLLOUT : 0)
346 if (pevt->portev_events & POLLOUT)
  /external/oj-libjdwp/src/solaris/transport/socket/
socket_md.c 255 fds[0].events |= POLLOUT;
265 if (fds[0].revents & POLLOUT) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_poll.py 40 p.register(wr, select.POLLOUT)
50 ready_writers = find_ready_matching(ready, select.POLLOUT)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_poll.py 40 p.register(wr, select.POLLOUT)
50 ready_writers = find_ready_matching(ready, select.POLLOUT)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_poll.py 40 p.register(wr, select.POLLOUT)
50 ready_writers = find_ready_matching(ready, select.POLLOUT)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_poll.py 40 p.register(wr, select.POLLOUT)
50 ready_writers = find_ready_matching(ready, select.POLLOUT)
  /system/netd/server/dns/
DnsTlsSocket.cpp 60 struct pollfd fds = { .fd = fd, .events = POLLOUT };
360 fds[SSLFD].events |= POLLOUT;
393 } else if (fds[SSLFD].revents & POLLOUT) {
  /external/ltp/testcases/kernel/syscalls/epoll_wait/
epoll_wait01.c 40 {.fd = fds[1], .events = POLLOUT},
  /external/python/cpython3/Lib/
selectors.py 356 poll_events |= select.POLLOUT
383 if event & ~select.POLLOUT:
483 poll_events |= select.POLLOUT
510 if event & ~select.POLLOUT:
  /external/tinycompress/
compress.c 365 fds.events = POLLOUT;
390 if (fds.revents & POLLOUT) {
616 fds.events = POLLOUT | POLLIN;
622 if (fds.revents & (POLLOUT | POLLIN))
  /external/tensorflow/tensorflow/core/platform/posix/
subprocess.cc 398 fds[fd_count].events = (i > 0) ? POLLIN : POLLOUT;
430 } else if ((fds[i].revents & POLLOUT) != 0) {
  /kernel/tests/net/test/
sock_diag_test.py 704 POLLIN is specified, it will return POLLIN|POLLERR|POLLHUP, but if POLLOUT
705 is (also) specified, it will only return POLLOUT.
708 POLLIN_OUT = select.POLLIN | select.POLLOUT
715 POLL_FLAGS = [(select.POLLIN, "IN"), (select.POLLOUT, "OUT"),
782 self.CheckPollRst(select.POLLOUT, select.POLLOUT, 0)
785 self.CheckPollRst(self.POLLIN_OUT, select.POLLOUT, 0)
793 self.CheckPollDestroy(select.POLLOUT, select.POLLOUT, 0)
796 self.CheckPollDestroy(self.POLLIN_OUT, select.POLLOUT, 0
    [all...]

Completed in 403 milliseconds

12 3 4 5 6 7