/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | nic.h | 63 int ( *poll ) ( struct nic *, int retrieve ); member in struct:nic_operations 72 return nic.nic_op->poll ( &nic, retrieve );
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/ |
H A D | SysCalls.c | 30 #include <sys/poll.h> 653 The ::poll routine waits for up to timeout milliseconds for an event 658 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html">POSIX</a> 672 poll ( function
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/ |
H A D | ranfile.cpp | 318 PRIntn active, poll, limit = 0, max_virtual_procs = 0, threads = 0, virtual_procs; local 387 for (poll = 0; poll < threads; poll++) 389 if (hammer[poll]->action == HammerData::sg_go) /* don't overwrite done */ 390 hammer[poll]->action = HammerData::sg_stop; /* ask him to stop */ 396 for (poll = 0; poll < threads; poll++) 399 while (hammer[poll] [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | ranfile.c | 282 int active, poll; local 377 for (poll = 0; poll < threads; poll++) 379 if (hammer[poll].action == sg_go) /* don't overwrite done */ 380 hammer[poll].action = sg_stop; /* ask him to stop */ 386 for (poll = 0; poll < threads; poll++) 389 while (hammer[poll] [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | tcp.h | 91 /** Function prototype for tcp poll callback functions. Called periodically as 264 tcp_poll_fn poll; member in struct:tcp_pcb 336 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
|
/vbox/src/VBox/Devices/PC/ |
H A D | DevPIC.cpp | 91 uint8_t poll; member in struct:PICSTATE 525 pPic->poll = 1; 663 if (pPic->poll) 666 pPic->poll = 0; 789 pPic->poll, pPic->special_mask, pPic->init_state); 815 SSMR3PutU8(pSSM, pThis->aPics[i].poll); 848 SSMR3GetU8(pSSM, &pThis->aPics[i].poll);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | netdevice.h | 244 void ( * poll ) ( struct net_device *netdev ); member in struct:net_device_operations
|
H A D | net80211.h | 357 void ( * poll ) ( struct net80211_device *dev ); member in struct:net80211_device_operations 1042 * value) only when calling code is prepared to poll the
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prsocket.c | 1688 PRPollDesc *poll = polldesc; local 1690 if (NULL == set) return poll; 1697 if ((PRFileDesc*)-1 == poll[pdidx].fd) 1700 poll = (PRPollDesc*)PR_Realloc( 1701 poll, (pdidx + 1 + PD_INCR) * sizeof(PRPollDesc)); 1702 if (NULL == poll) goto out_of_memory; 1704 poll + pdidx * sizeof(PRPollDesc), 1706 poll[pdidx + PD_INCR].fd = (PRFileDesc*)-1; 1708 if ((NULL == poll[pdidx].fd) 1709 || (poll[pdid 1772 PRPollDesc *copy, *poll; local [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | tcp.h | 70 err_t (* poll)(void *arg, struct tcp_pcb *tpcb), 302 err_t (* poll)(void *arg, struct tcp_pcb *pcb); member in struct:tcp_pcb 383 if((pcb)->poll != NULL) \ 384 (ret = (pcb)->poll((pcb)->callback_arg,(pcb)))
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | tcp.c | 1066 /* We check if we should poll the connection. */ 1574 tcp_poll(struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval) argument 1576 LWIP_ASSERT("invalid socket state for poll", pcb->state != LISTEN); 1578 pcb->poll = poll; 1580 LWIP_UNUSED_ARG(poll);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | unix.c | 50 #include <poll.h> 506 * poll(). The second (preferred) implementation uses poll(). 1483 int nfd; /* to hold the return value of poll() */ 1511 * for the pipe and we poll it for reading. 1543 * If we need to poll the pipe for waking up a native thread, 1578 /* direct copy of poll flags */ 1640 * are enabled. Otherwise, when the select/poll calls are interrupted, the 1752 /* Negative fd's are ignored by poll() */ 1799 PR_LOG(_pr_io_lm, PR_LOG_MAX, ("poll() faile 3604 int poll(struct pollfd *filedes, unsigned long nfds, int timeout) function [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/ |
H A D | prio.h | 483 PRPollFN poll; /* Test the fd to see if it is ready */ member in struct:PRIOMethods 1375 * the out_flags field of the poll descriptor returned by 1382 * progress and has not completed yet. The caller should poll 1978 /************** The following definitions are for poll ******************/ 1989 ** these together to produce the desired poll request. 1994 #include <poll.h> 2063 ** is to poll it with the PR_POLL_READ flag. You can't
|