/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | aixwrap.c | 60 int _MD_POLL(void *listptr, unsigned long nfds, long timeout) argument 62 return poll(listptr, nfds, timeout);
|
H A D | uxwrap.c | 338 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 D | aix.c | 244 int _MD_POLL(void *listptr, unsigned long nfds, long timeout) argument 263 rv = (*aix_poll_fcn)(listptr, nfds, timeout);
|
H A D | unix.c | 3604 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 D | RTWinPoll.cpp | 35 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 D | proxy_pollmgr.c | 49 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 D | linux_api.c | 71 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 D | prselect.c | 124 PRIntn nfds; local 298 nfds = 2; 338 for (j = 2; j < nfds; j++) { 365 nfds = nextIndex;
|
H A D | selct_nm.c | 107 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 D | w32poll.c | 69 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 D | SysCalls.c | 663 @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 D | slirp.c | 83 AssertRelease(poll_index < (nfds)); \ 84 AssertRelease(poll_index >= 0 && poll_index < (nfds)); \ 101 AssertRelease(poll_index < (nfds)); \ 621 int nfds; local 632 nfds = *pnfds;
|