Home
last modified time | relevance | path

Searched refs:exceptfds (Results 1 – 16 of 16) sorted by relevance

/external/openssh/openbsd-compat/
Dbsd-poll.c44 fd_set *readfds = NULL, *writefds = NULL, *exceptfds = NULL; in poll() local
60 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) { in poll()
73 FD_SET(fd, exceptfds); in poll()
77 FD_SET(fd, exceptfds); in poll()
88 ret = select(maxfd + 1, readfds, writefds, exceptfds, tvp); in poll()
103 if (FD_ISSET(fd, exceptfds)) { in poll()
113 if (exceptfds != NULL) in poll()
114 free(exceptfds); in poll()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
Dselect.c9 fd_set* exceptfds, struct timeval* timeout) { in select() argument
10 return ki_select(nfds, readfds, writefds, exceptfds, timeout); in select()
/external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
Dprobslet.h130 PR_fd_set *exceptfds, PRIntervalTime timeout);
/external/v8/src/
Dd8-posix.cc110 fd_set readfds, writefds, exceptfds; in WaitOnFD() local
122 FD_ZERO(&exceptfds); in WaitOnFD()
124 FD_SET(fd, &exceptfds); in WaitOnFD()
134 &exceptfds, in WaitOnFD()
/external/chromium_org/v8/src/
Dd8-posix.cc110 fd_set readfds, writefds, exceptfds; in WaitOnFD() local
122 FD_ZERO(&exceptfds); in WaitOnFD()
124 FD_SET(fd, &exceptfds); in WaitOnFD()
134 &exceptfds, in WaitOnFD()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Dkernel_proxy.cc999 fd_set* exceptfds, struct timeval* timeout) { in select() argument
1009 if (NULL == exceptfds) in select()
1010 exceptfds = &ignore; in select()
1020 if (FD_ISSET(fd, exceptfds)) in select()
1033 FD_ZERO(exceptfds); in select()
1067 FD_SET(info->fd, exceptfds); in select()
Dkernel_intercept.cc309 fd_set* exceptfds, struct timeval* timeout) { in ki_select() argument
310 return s_kp->select(nfds, readfds, writefds, exceptfds, timeout); in ki_select()
Dkernel_wrap_glibc.cc262 fd_set* exceptfds, struct timeval* timeout, int* count) { in WRAP()
263 *count = ki_select(nfds, readfds, writefds, exceptfds, timeout); in WRAP()
Dkernel_intercept.h91 fd_set* exceptfds, struct timeval* timeout);
Dkernel_proxy.h153 fd_set* exceptfds, struct timeval* timeout);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
Dkernel_wrap_test.cc555 fd_set exceptfds; in TEST_F() local
556 EXPECT_CALL(mock, select(kDummyInt, &readfds, &writefds, &exceptfds, NULL)) in TEST_F()
559 select(kDummyInt, &readfds, &writefds, &exceptfds, NULL)); in TEST_F()
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
D_solaris.h444 fd_set *exceptfds, struct timeval *timeout);
793 fd_set *exceptfds, struct timeval *timeout);
D_irix.h446 fd_set *exceptfds, struct timeval *timeout);
/external/valgrind/main/memcheck/tests/x86-linux/
Dscalar.stderr.exp905 Syscall param old_select(exceptfds) points to unaddressable byte(s)
1655 Syscall param select(exceptfds) contains uninitialised byte(s)
1673 Syscall param select(exceptfds) points to unaddressable byte(s)
/external/valgrind/main/coregrind/m_syswrap/
Dsyswrap-generic.c3853 vki_fd_set *, exceptfds, struct vki_timeval *, timeout); in PRE()
Dsyswrap-linux.c1139 vki_fd_set *, exceptfds, struct vki_timeval *, timeout, in PRE()