HomeSort by relevance Sort by last modified time
    Searched refs:pollfd (Results 226 - 250 of 447) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
sched-messaging.c 76 struct pollfd pollfd = { .fd = wakefd, .events = POLLIN }; local
83 if (poll(&pollfd, 1, -1) != 1)
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
VpnTest.java 265 StructPollfd pollfd = new StructPollfd(); local
266 pollfd.events = (short) POLLIN; // "error: possible loss of precision"
267 pollfd.fd = s;
268 int ret = Os.poll(new StructPollfd[] { pollfd }, SOCKET_TIMEOUT_MS);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_kernel_proxy.h 73 MOCK_METHOD3(poll, int(struct pollfd*, nfds_t, int));
  /external/fio/engines/
binject.c 25 struct pollfd *pfds;
51 static int pollin_events(struct pollfd *pfds, int fds)
403 bd->pfds = malloc(sizeof(struct pollfd) * td->o.nr_files);
404 memset(bd->pfds, 0, sizeof(struct pollfd) * td->o.nr_files);
sg.c 26 struct pollfd *pfds;
53 static int pollin_events(struct pollfd *pfds, int fds)
332 sd->pfds = malloc(sizeof(struct pollfd) * td->o.nr_files);
333 memset(sd->pfds, 0, sizeof(struct pollfd) * td->o.nr_files);
  /hardware/invensense/60xx/libsensors/
MPLSensor.h 101 struct pollfd mPollFds[4];
  /hardware/libhardware_legacy/uevent/
uevent.c 76 struct pollfd fds;
  /system/core/init/
ueventd.c 53 struct pollfd ufd;
  /system/netd/server/
MDnsSdListener.h 95 struct pollfd *mPollFds;
MDnsSdListener.cpp 592 mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd), mPollSize);
595 ((int)sizeof(struct pollfd)) * mPollSize);
654 mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd), mPollSize);
657 ((int)sizeof(struct pollfd)) * mPollSize);
661 memset(mPollFds, 0, sizeof(struct pollfd) * mPollSize);
  /device/asus/fugu/libaudio/
AudioHotplugThread.cpp 312 struct pollfd fds[2] = {
361 struct pollfd pfd = {mShutdownEventFD, POLLIN, 0};
  /external/chromium_org/third_party/libusb/src/libusb/
io.c 1947 struct libusb_pollfd *pollfd = &ipollfd->pollfd; local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_openvms.h 241 struct pollfd *ioq_pollfds;
307 extern int __poll(struct pollfd filedes[], unsigned int nfds, int timeout);
_bsdi.h 161 struct pollfd *ioq_pollfds;
_hpux.h 176 struct pollfd *ioq_pollfds;
_nec.h 146 struct pollfd *ioq_pollfds;
_nto.h 165 struct pollfd *ioq_pollfds;
  /external/libusb/libusb/
io.c 1795 struct libusb_pollfd *pollfd = &ipollfd->pollfd; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
evlist.c 92 free(evlist->pollfd);
94 evlist->pollfd = NULL;
329 evlist->pollfd = malloc(sizeof(struct pollfd) * nfds);
330 return evlist->pollfd != NULL ? 0 : -ENOMEM;
336 evlist->pollfd[evlist->nr_fds].fd = fd;
337 evlist->pollfd[evlist->nr_fds].events = POLLIN;
716 if (evlist->pollfd == NULL && perf_evlist__alloc_pollfd(evlist) < 0)
  /external/valgrind/main/auxprogs/
valgrind-listener.c 102 struct pollfd conn_pollfd[M_CONNECTIONS];
305 { struct pollfd ufd;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
timer.h 157 int snd_timer_poll_descriptors(snd_timer_t *handle, struct pollfd *pfds, unsigned int space);
158 int snd_timer_poll_descriptors_revents(snd_timer_t *timer, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
timer.h 157 int snd_timer_poll_descriptors(snd_timer_t *handle, struct pollfd *pfds, unsigned int space);
158 int snd_timer_poll_descriptors_revents(snd_timer_t *timer, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
  /external/bluetooth/bluedroid/udrv/ulinux/
uipc.c 175 struct pollfd pfd;
379 struct pollfd pfd;
756 struct pollfd pfd;
  /external/bluetooth/bluedroid/btif/src/
btif_sock_thread.c 88 struct pollfd pfd;
494 static void process_data_sock(int h, struct pollfd *pfds, int count)
530 static void prepare_poll_fds(int h, struct pollfd* pfds)
557 struct pollfd pfds[MAX_POLL];
  /external/chromium_org/net/test/spawned_test_server/
local_test_server_posix.cc 68 struct pollfd poll_fds[1];

Completed in 875 milliseconds

1 2 3 4 5 6 7 8 91011>>