Searched defs:nfds (Results 1 - 12 of 12) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Daixwrap.c60 int _MD_POLL(void *listptr, unsigned long nfds, long timeout) argument
62 return poll(listptr, nfds, timeout);
H A Duxwrap.c338 int wrap_poll(void *listptr, unsigned long nfds, long timeout) argument
340 int poll(void *listptr, unsigned long nfds, long timeout)
342 int poll(struct pollfd filedes[], unsigned int nfds, int timeout)
344 int poll(struct pollfd filedes[], int nfds, int timeout)
346 int poll(struct pollfd *filedes, nfds_t nfds, int timeout)
348 int poll(struct pollfd *filedes, int nfds, int timeout)
350 int poll(struct pollfd *filedes, unsigned nfds, int timeout)
352 int poll(struct pollfd *filedes, unsigned long nfds, int timeout)
370 return _MD_POLL(listptr, nfds, timeout);
372 return _MD_POLL(filedes, nfds, timeou
[all...]
H A Daix.c244 int _MD_POLL(void *listptr, unsigned long nfds, long timeout) argument
263 rv = (*aix_poll_fcn)(listptr, nfds, timeout);
H A Dunix.c3604 int poll(struct pollfd *filedes, unsigned long nfds, int timeout) argument
3630 for (i = 0; i < nfds; i++) {
3673 for (i = 0; i < nfds; i++) {
3714 for (i = 0; i < nfds; i++) {
/vbox/src/VBox/NetworkServices/NAT/
H A DRTWinPoll.cpp35 RTWinPoll(struct pollfd *pFds, unsigned int nfds, int timeout, int *pNready) argument
45 for (unsigned int i = 0; i < nfds; ++i)
93 for (unsigned int i = 0; i < nfds; ++i)
H A Dproxy_pollmgr.c49 nfds_t nfds; /* part of the arrays in use */ member in struct:pollmgr
90 pollmgr.nfds = 0;
135 pollmgr.nfds = POLLMGR_SLOT_STATIC_COUNT;
184 if (pollmgr.nfds == pollmgr.capacity) {
216 for (i = pollmgr.nfds; i < newcap; ++i) {
224 slot = pollmgr.nfds;
225 ++pollmgr.nfds;
310 LWIP_ASSERT1((nfds_t)slot < pollmgr.nfds);
346 nready = poll(pollmgr.fds, pollmgr.nfds, -1);
348 int rc = RTWinPoll(pollmgr.fds, pollmgr.nfds,RT_INDEFINITE_WAI
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/core/linux/
H A Dlinux_api.c71 int linux_poll ( struct pollfd *fds, nfds_t nfds, int timeout ) { argument
72 return linux_syscall ( __NR_poll, fds, nfds, timeout );
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dprselect.c124 PRIntn nfds; local
298 nfds = 2;
338 for (j = 2; j < nfds; j++) {
365 nfds = nextIndex;
H A Dselct_nm.c107 PRIntn nfds; local
235 nfds = 2;
279 for (j = 2; j < nfds; j++) {
307 nfds = nextIndex;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32poll.c69 int nfds,
79 ready = _MD_SELECT(nfds, readfds, writefds, exceptfds, timeout);
68 _PR_NTFiberSafeSelect( int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A DSysCalls.c663 @param [in] nfds Number of elements in the array of pollfd structures.
674 nfds_t nfds,
723 pEnd = &pPollFD [ nfds ];
672 poll( struct pollfd * pfd, nfds_t nfds, int timeout ) argument
/vbox/src/VBox/Devices/Network/slirp/
H A Dslirp.c83 AssertRelease(poll_index < (nfds)); \
84 AssertRelease(poll_index >= 0 && poll_index < (nfds)); \
101 AssertRelease(poll_index < (nfds)); \
621 int nfds; local
632 nfds = *pnfds;

Completed in 115 milliseconds