Searched refs:select (Results 1 - 25 of 76) sorted by relevance

1234

/vbox/src/VBox/Devices/Network/slirp/
H A Dmain.h28 #include <sys/select.h>
H A Dlibslirp.h34 # include <sys/select.h>
111 * This method help DrvNAT to select strategy: about VMRESUMEREASON_HOST_RESUME:
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Daixwrap.c42 * invokes the select() function. This file is used in an ugly
43 * hack to override the system select() function on AIX releases
45 * override select().)
52 #include <sys/select.h>
57 return select(width, r, w, e, t);
H A Duxwrap.c42 * Our wrapped versions of the Unix select() and poll() system calls.
50 /* Do not wrap select() and poll(). */
52 /* The include files for select() */
95 * select() --
97 * Wrap up the select system call so that we can deschedule
104 int select(size_t width, int *rl, int *wl, int *el, const struct timeval *tv) function
112 int select(int width, fd_set *rd, fd_set *wr, fd_set *ex,
115 int select(int width, fd_set *rd, fd_set *wr, fd_set *ex, struct timeval *tv)
132 * select() with no fear of blocking.
162 * from the select() ma
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dselintr.c39 * Test whether classic NSPR's select() wrapper properly blocks
41 * HP-UX and SINIX) an interrupted select() system call is
43 * the time that has elapsed. If a select() call is interrupted
76 rv = select(1, NULL, NULL, NULL, &timeout);
77 printf("select returned %d\n", rv);
H A Dselect2.c122 rv = select(0, NULL, NULL, NULL, &timeout);
180 if (debug_mode) printf("Going into select \n");
184 if (debug_mode) printf("return from select is %d\n", rv);
189 if (debug_mode) printf("Damn; the select test failed...\n");
260 if (debug_mode) printf("Going into select \n");
264 rv = select(osfd + 1, &rdset, NULL, NULL, &timeout);
266 if (debug_mode) printf("return from select is %d\n", rv);
272 if (debug_mode) printf("Damn; the select test failed...\n");
344 Measure(NativeSelectTest, "time to call 1 element select()");
347 Measure(EmptyNativeSelect, "time to call Empty select()");
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dselect.h1 /* $NetBSD: select.h,v 1.27 2006/02/16 20:17:20 perry Exp $ */
31 * @(#)select.h 8.2 (Berkeley) 1/4/94
48 int select(int, fd_set * __restrict, fd_set * __restrict,
H A Dtime.h170 #include <sys/select.h>
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dmenu.h47 const char *select, struct menu_item **selected );
H A Dposix_io.h21 /** File descriptor set as used for select() */
27 extern int select ( fd_set *readfds, int wait );
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dmenu_cmd.c198 const char *select; member in struct:choose_options
208 struct choose_options, select, parse_string ),
247 if ( ( rc = show_menu ( menu, opts.timeout, opts.select, &item ) ) != 0)
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A D_qnx.h65 #include <sys/select.h>
205 ** We wrapped the select() call. _MD_SELECT refers to the built-in,
210 #include <sys/select.h>
211 #define _MD_SELECT select
H A D_nto.h73 #include <sys/select.h>
214 ** We wrapped the select() call. _MD_SELECT refers to the built-in,
217 #define _MD_SELECT select
H A Dsunos4.h157 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
H A D_aix.h49 #include <sys/select.h>
248 #define _MD_SELECT select
H A D_ncr.h217 * We wrapped the select() call. _MD_SELECT refers to the built-in,
222 #include <sys/select.h>
H A D_unixware.h206 * We wrapped the select() call. _MD_SELECT refers to the built-in,
211 #include <sys/select.h>
/vbox/src/VBox/Frontends/VBoxSDL/
H A DHelper.cpp69 int n = select(eqFD + 1, &fdset, NULL, NULL, NULL);
146 * Signal to the XPCOM even queue thread that it should select for more events.
/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/
H A DXpoll.h59 #include <sys/select.h> /* Get the FD_* macros. */
94 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
165 #define Select(n,r,w,e,t) select(0,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
/vbox/src/VBox/Devices/PC/ipxe/src/hci/tui/
H A Dmenu_ui.c306 const char *select, struct menu_item **selected ) {
321 if ( select ) {
322 if ( strcmp ( select, item->label ) == 0 )
305 show_menu( struct menu *menu, unsigned int timeout_ms, const char *select, struct menu_item **selected ) argument
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdesktop.h42 #include <sys/select.h>
/vbox/src/libs/libpng-1.2.8/projects/visualc71/
H A DREADME_zlib.txt14 1) On the main menu, select "File | Open Solution".
/vbox/src/VBox/ValidationKit/testdriver/
H A Dtxsclient.py35 import select namespace
1771 select.select([oSocket, oWakeupR], [], [oSocket, oWakeupR], cMsTimeout / 1000.0);
1775 reporter.log('socket.select() on accept was canceled');
1778 reporter.logXcpt('socket.select() on accept');
1822 ttRc = select.select([oWakeupR], [oSocket], [oSocket, oWakeupR], cMsTimeout / 1000.0);
1824 raise socket.error(errno.ETIMEDOUT, 'select timed out');
1831 reporter.fatalXcpt('socket.select() on connect failed');
1866 # Create wakeup socket pair for unix (select does
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A Dselect.c48 * $Id: select.c,v 1.1.1.1 2003/11/19 01:50:30 kyu3 Exp $
149 select( function
237 /* select is not restarted after signals... */
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_file.c121 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {

Completed in 3212 milliseconds

1234