HomeSort by relevance Sort by last modified time
    Searched refs:nfds (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
poll.c 10 int poll(struct pollfd *fds, nfds_t nfds, int timeout) {
11 return ki_poll(fds, nfds, timeout);
select.c 8 int select(int nfds, fd_set* readfds, fd_set* writefds,
10 return ki_select(nfds, readfds, writefds, exceptfds, timeout);
  /external/fio/os/windows/posix/include/sys/
poll.h 13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
  /development/ndk/sources/android/libportable/arch-mips/
poll.c 109 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout)
114 for (i = 0; i < nfds; i++)
117 ret = REAL(poll)(fds, nfds, timeout);
119 for (i = 0; i < nfds; i++) {
  /external/mdnsresponder/mDNSPosix/
ExampleClientApp.c 51 int nfds = 0; local
68 mDNSPosixGetFDSet(m, &nfds, &readfds, &timeout);
71 verbosedebugf("select(%d, %d.%06d)", nfds, timeout.tv_sec, timeout.tv_usec);
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
mDNSPosix.h 71 // After calling mDNSPosixGetFDSet(), call select(nfds, &readfds, NULL, NULL, &timeout); as usual
73 extern void mDNSPosixGetFDSet(mDNS *m, int *nfds, fd_set *readfds, struct timeval *timeout);
  /system/core/debuggerd/
getevent.cpp 33 static int nfds; variable
69 new_ufds = reinterpret_cast<pollfd*>(realloc(ufds, sizeof(ufds[0]) * (nfds + 1)));
76 device_names, sizeof(device_names[0]) * (nfds + 1)));
82 ufds[nfds].fd = fd;
83 ufds[nfds].events = POLLIN;
84 device_names[nfds] = strdup(device);
85 nfds++;
92 for (i = 1; i < nfds; i++) {
94 int count = nfds - i - 1;
98 nfds--
    [all...]
  /external/chromium_org/third_party/libevent/
devpoll.c 64 int nfds; member in struct:devpollop
169 devpollop->nfds = nfiles;
190 if (max >= devpollop->nfds) {
192 int nfds; local
194 nfds = devpollop->nfds;
195 while (nfds <= max)
196 nfds <<= 1;
198 fds = realloc(devpollop->fds, nfds * sizeof(struct evdevpoll));
204 memset(fds + devpollop->nfds, 0
    [all...]
epoll.c 66 int nfds; member in struct:epollop
147 epollop->nfds = INITIAL_NFILES;
159 if (max >= epollop->nfds) {
161 int nfds; local
163 nfds = epollop->nfds;
164 while (nfds <= max)
165 nfds <<= 1;
167 fds = realloc(epollop->fds, nfds * sizeof(struct evepoll));
173 memset(fds + epollop->nfds, 0
    [all...]
poll.c 58 int nfds; /* Size of event_* */ member in struct:pollop
126 for (i = 0; i < pop->nfds; ++i) {
138 int res, i, j, msec = -1, nfds; local
146 nfds = pop->nfds;
147 res = poll(pop->event_set, nfds, msec);
163 if (res == 0 || nfds == 0)
166 i = random() % nfds;
167 for (j = 0; j < nfds; j++) {
170 if (++i == nfds)
    [all...]
  /external/ipsec-tools/src/racoon/
session.c 112 static int nfds = 0; variable
195 error = select(nfds, &rfds, (fd_set *)0, (fd_set *)0, timeout);
267 nfds = 0;
284 nfds = (nfds > lcconf->sock_admin ? nfds : lcconf->sock_admin);
293 nfds = (nfds > lcconf->sock_pfkey ? nfds : lcconf->sock_pfkey);
300 nfds = (nfds > lcconf->rtsock ? nfds : lcconf->rtsock)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
ftw.c 39 int nfds)
47 /* XXX - nfds is currently unused */
48 if (nfds < 1 || nfds > OPEN_MAX) {
nftw.c 40 struct FTW *), int nfds, int ftwflags)
49 /* XXX - nfds is currently unused */
50 if (nfds < 1 || nfds > OPEN_MAX) {
  /external/strace/
pathtrace.c 265 int nfds; local
282 nfds = (int) args[0];
283 /* Kernel rejects negative nfds, so we don't parse it either. */
284 if (nfds <= 0)
287 if (nfds > 1024*1024)
288 nfds = 1024*1024;
289 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
302 j = next_set_bit(fds, j, nfds);
319 unsigned nfds; local
323 nfds = tcp->u_arg[1]
    [all...]
stream.c 237 unsigned nfds; local
242 nfds = tcp->u_arg[1];
243 size = sizeof(fds) * nfds;
246 if (nfds == 0 || size / sizeof(fds) != nfds || end < start) {
248 tcp->u_arg[0], nfds);
284 tprintf(", %d, ", nfds);
299 nfds = tcp->u_arg[1];
300 size = sizeof(fds) * nfds;
303 if (nfds == 0 || size / sizeof(fds) != nfds || end < start
    [all...]
  /external/chromium_org/content/common/gpu/media/
exynos_v4l2_video_device.cc 50 nfds_t nfds; local
55 nfds = 1;
59 pollfds[nfds].fd = device_fd_;
60 pollfds[nfds].events = POLLIN | POLLOUT | POLLERR | POLLPRI;
61 pollfd = nfds;
62 nfds++;
65 if (HANDLE_EINTR(poll(pollfds, nfds, -1)) == -1) {
  /external/dhcpcd/
eloop.c 285 nfds_t nfds, i; local
321 nfds = 0;
323 nfds++;
324 if (msecs == -1 && nfds == 0) {
328 if (nfds > fds_len) {
331 fds_len = nfds + 5;
334 nfds = 0;
336 fds[nfds].fd = e->fd;
337 fds[nfds].events = POLLIN;
338 fds[nfds].revents = 0
    [all...]
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
gralloc_cb.h 25 #define CB_HANDLE_NUM_INTS(nfds) (int)((sizeof(cb_handle_t) - (nfds)*sizeof(int)) / sizeof(int))
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_hpux.h 245 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
248 #define _MD_POLL(fds,nfds,timeout) syscall(SYS_poll,fds,nfds,timeout)
_openbsd.h 227 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
229 #define _MD_POLL(fds,nfds,timeout) syscall(SYS_poll,fds,nfds,timeout)
  /frameworks/base/core/jni/
com_android_internal_os_ZygoteInit.cpp 179 int nfds = 0; local
195 if (fd >= nfds) {
196 nfds = fd + 1;
202 err = select (nfds, &fdset, NULL, NULL, NULL);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/
mainloop.h 123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
mainloop.h 123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
  /hardware/ril/libril/
ril_event.cpp 69 static int nfds = 0; variable
144 if (ev->fd+1 == nfds) {
154 nfds = n + 1;
155 dlog("~~~~ nfds = %d ~~~~", nfds);
277 if (ev->fd >= nfds) nfds = ev->fd+1;
278 dlog("~~~~ nfds = %d ~~~~", nfds);
367 n = select(nfds, &rfds, NULL, NULL, ptv)
    [all...]
  /system/core/toolbox/
getevent.c 18 static int nfds; variable
344 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
350 new_device_names = realloc(device_names, sizeof(device_names[0]) * (nfds + 1));
358 printf("add device %d: %s\n", nfds, device);
385 ufds[nfds].fd = fd;
386 ufds[nfds].events = POLLIN;
387 device_names[nfds] = strdup(device);
388 nfds++;
396 for(i = 1; i < nfds; i++) {
398 int count = nfds - i - 1
    [all...]

Completed in 428 milliseconds

1 2 3 4 5