HomeSort by relevance Sort by last modified time
    Searched refs:POLLOUT (Results 101 - 125 of 149) sorted by null

1 2 3 45 6

  /external/chromium_org/third_party/tcmalloc/chromium/src/
symbolize.cc 208 struct pollfd pfd = { child_in[1], POLLOUT, 0 };
209 if (!poll(&pfd, 1, 0) || !(pfd.revents & POLLOUT) ||
  /external/chromium_org/third_party/tcmalloc/vendor/src/
symbolize.cc 208 struct pollfd pfd = { child_in[1], POLLOUT, 0 };
209 if (!poll(&pfd, 1, 0) || !(pfd.revents & POLLOUT) ||
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 56 #define POLLOUT 0x0004 /* Writing now will not block */
poll_windows.c 37 * - leave the core functions call the poll routine and flag POLLIN/POLLOUT
504 * Currently, this function only accepts one of POLLIN or POLLOUT per fd
530 // Only one of POLLIN or POLLOUT can be selected with this version of poll (not both)
531 if ((fds[i].events & ~POLLIN) && (!(fds[i].events & POLLOUT))) {
564 if ((fds[i].events & POLLOUT) && (poll_fd[_index].rw != RW_WRITE)) {
567 usbi_warn(NULL, "attempted POLLOUT on fd without WRITE access");
  /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)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node.cc 55 uint32_t val = POLLIN | POLLOUT | POLLERR;
kernel_proxy.cc 730 events |= POLLOUT;
753 if (status & POLLOUT) {
805 if (events[fd].events & POLLOUT) {
  /external/openssh/
monitor_fdpass.c 83 pfd.events = POLLOUT;
  /external/tinycompress/
compress.c 365 fds.events = POLLOUT;
390 if (fds.revents & POLLOUT) {
616 fds.events = POLLOUT | POLLIN;
625 if (fds.revents & (POLLOUT | POLLIN)) {
  /external/chromium/third_party/libevent/
evport.c 108 (FDI_HAS_WRITE(fdi) ? POLLOUT : 0)
367 if (pevt->portev_events & POLLOUT)
  /external/chromium_org/third_party/libevent/
evport.c 108 (FDI_HAS_WRITE(fdi) ? POLLOUT : 0)
367 if (pevt->portev_events & POLLOUT)
  /libcore/luni/src/main/java/java/nio/
SelectorImpl.java 215 eventMask |= POLLOUT;
266 if ((pollFd.revents & POLLOUT) != 0) {
  /external/bluetooth/bluedroid/btif/src/
btif_sock_thread.c 68 if (events & POLLOUT) APPL_TRACE_DEBUG0( " POLLOUT "); \
80 #define IS_WRITE(e) ((e) & POLLOUT)
401 pevents |= POLLOUT;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_unixos.h 98 #define _PR_UNIX_POLL_WRITE POLLOUT
535 #define POLLOUT 0x0004 /* fd is writeable (won't block) */
537 #define POLLWRNORM POLLOUT
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 109 if flags & select.POLLOUT:
185 flags |= select.POLLOUT
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 109 if flags & select.POLLOUT:
185 flags |= select.POLLOUT
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUsbALSA.cpp 431 pfdProxyRecording[0].events = POLLOUT;
815 pfdUsbPlayback[1].events = (POLLIN | POLLOUT | POLLERR | POLLNVAL | POLLHUP);
836 pfdProxyPlayback[1].events = (POLLIN | POLLOUT| POLLERR | POLLNVAL);
    [all...]
  /external/chromium_org/third_party/libxml/src/
nanohttp.c 500 p.events = POLLOUT;
966 p.events = POLLOUT;
990 if (p.revents == POLLOUT)
    [all...]
  /external/libxml2/
nanohttp.c 498 p.events = POLLOUT;
964 p.events = POLLOUT;
988 if (p.revents == POLLOUT)
    [all...]
  /hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
uim.c 886 p.events = POLLERR | POLLHUP | POLLOUT | POLLIN;
  /external/qemu/audio/
alsaaudio.c 344 if (pfds[i].events & POLLOUT) {
346 dolog ("POLLOUT %d %d\n", i, pfds[i].fd);
378 return alsa_poll_helper (alsa->handle, &alsa->pollhlp, POLLOUT);
    [all...]
  /external/tinyalsa/
pcm.c 905 pfd.events = POLLOUT | POLLERR | POLLNVAL;
935 } while (!(pfd.revents & (POLLIN | POLLOUT)));
  /external/wpa_supplicant_8/src/utils/
eloop.c 281 pfd->events |= POLLOUT;
358 max_pollfd_map, POLLOUT))
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prio.h     [all...]

Completed in 2490 milliseconds

1 2 3 45 6