HomeSort by relevance Sort by last modified time
    Searched full:nfds (Results 26 - 50 of 156) sorted by null

12 3 4 5 6 7

  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_netbsd.h 292 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
295 #define _MD_POLL(fds,nfds,timeout) syscall(SYS_poll,fds,nfds,timeout)
_reliantunix.h 262 extern int _select(int nfds, fd_set *readfds, fd_set *writefds,
264 #define _MD_SELECT(nfds,r,w,e,tv) _select(nfds,r,w,e,tv)
_bsdi.h 206 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
_darwin.h 255 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
_dgux.h 209 extern int _select(int nfds, fd_set *readfds, fd_set *writefds,
216 extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
_ncr.h 220 extern int _select(int nfds, fd_set *readfds, fd_set *writefds,
225 extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
_rhapsody.h 217 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
_unixware.h 209 extern int _select(int nfds, fd_set *readfds, fd_set *writefds,
214 extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
  /external/libppp/src/
main.c 541 int i, nfds, nothing_done; local
562 nfds = 0;
568 descriptor_UpdateSet(&bundle->desc, rfds, wfds, efds, &nfds);
571 descriptor_UpdateSet(&server.desc, rfds, NULL, NULL, &nfds);
589 i = select(nfds, rfds, wfds, efds, NULL);
596 for (i = 0; i <= nfds; i++) {
601 if (select(nfds, rfds, wfds, efds, &t) != -1) {
610 if (select(nfds, rfds, wfds, efds, &t) != -1) {
619 if (select(nfds, rfds, wfds, efds, &t) != -1) {
636 for (i = 0; i <= nfds; i++
    [all...]
  /external/ipsec-tools/src/racoon/
schedule.c 333 int nfds = 0; local
340 nfds = 1;
350 error = select(nfds, &rfds, (fd_set *)0, (fd_set *)0, timeout);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_intercept.cc 304 int ki_poll(struct pollfd *fds, nfds_t nfds, int timeout) {
305 return s_kp->poll(fds, nfds, timeout);
308 int ki_select(int nfds, fd_set* readfds, fd_set* writefds,
310 return s_kp->select(nfds, readfds, writefds, exceptfds, timeout);
kernel_wrap_glibc.cc 240 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout, int* count) {
241 *count = ki_poll(fds, nfds, timeout);
261 int WRAP(select)(int nfds, fd_set* readfds, fd_set* writefds,
263 *count = ki_select(nfds, readfds, writefds, exceptfds, timeout);
kernel_intercept.h 89 int ki_poll(struct pollfd *fds, nfds_t nfds, int timeout);
90 int ki_select(int nfds, fd_set* readfds, fd_set* writefds,
  /external/kernel-headers/original/linux/
poll.h 115 extern int do_sys_poll(struct pollfd __user * ufds, unsigned int nfds,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
poll.h 50 /* Poll the file descriptors described by the NFDS structures starting at
select.h 101 /* Check the first NFDS descriptors each in READFDS (if not NULL) for read
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
poll.h 50 /* Poll the file descriptors described by the NFDS structures starting at
select.h 101 /* Check the first NFDS descriptors each in READFDS (if not NULL) for read
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
poll.h 50 /* Poll the file descriptors described by the NFDS structures starting at
  /external/strace/
stream.c 303 unsigned nfds; local
308 nfds = tcp->u_arg[1];
309 size = sizeof(fds) * nfds;
312 if (nfds == 0 || size / sizeof(fds) != nfds || end < start) {
314 tcp->u_arg[0], nfds);
350 tprintf(", %d, ", nfds);
365 nfds = tcp->u_arg[1];
366 size = sizeof(fds) * nfds;
369 if (nfds == 0 || size / sizeof(fds) != nfds || end < start
    [all...]
desc.c 492 int i, j, nfds; local
504 nfds = args[0];
505 tprintf("%d", nfds);
521 for (j = 0, sep = ""; j < nfds; j++) {
542 if ((nfds = tcp->u_rval) == 0) {
577 nfds--;
582 if (nfds == 0)
  /external/chromium_org/tools/android/forwarder2/
forwarder.cc 113 const int nfds = Socket::GetHighestFileDescriptor(*socket1_, *socket2_) + 1; local
132 if (HANDLE_EINTR(select(nfds, &read_fds, &write_fds, NULL, NULL)) <= 0) {
  /external/chromium/net/tools/flip_server/
epoll_server.cc 651 int nfds = epoll_wait_impl(epoll_fd_, local
655 VLOG(3) << "nfds=" << nfds;
658 event_recorder_.RecordEpollWaitEvent(timeout_in_ms, nfds);
669 if (nfds > 0) {
670 for (int i = 0; i < nfds; ++i) {
675 } else if (nfds < 0) {
  /external/chromium_org/net/tools/epoll_server/
epoll_server.cc 651 int nfds = epoll_wait_impl(epoll_fd_, local
655 VLOG(3) << "nfds=" << nfds;
658 event_recorder_.RecordEpollWaitEvent(timeout_in_ms, nfds);
669 if (nfds > 0) {
670 for (int i = 0; i < nfds; ++i) {
675 } else if (nfds < 0) {
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 88 int usbi_poll(struct pollfd *fds, unsigned int nfds, int timeout);

Completed in 2231 milliseconds

12 3 4 5 6 7