HomeSort by relevance Sort by last modified time
    Searched defs:fdset (Results 1 - 14 of 14) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/audio/bsd/
SDL_bsdaudio.c 157 fd_set fdset; local
160 FD_ZERO(&fdset);
161 FD_SET(audio_fd, &fdset);
167 if ( select(audio_fd+1, NULL, &fdset, NULL, &timeout) <= 0 ) {
  /external/quake/quake/src/QW/server/
sys_win.c 201 fd_set fdset; local
242 FD_ZERO(&fdset);
243 FD_SET(net_socket, &fdset);
246 if (select (net_socket+1, &fdset, NULL, NULL, &timeout) == -1)
sys_unix.c 219 fd_set fdset; local
261 FD_ZERO(&fdset);
263 FD_SET(0, &fdset);
264 FD_SET(net_socket, &fdset);
267 if (select (net_socket+1, &fdset, NULL, NULL, &timeout) == -1)
269 stdin_ready = FD_ISSET(0, &fdset);
  /frameworks/base/core/jni/
com_android_internal_os_ZygoteInit.cpp 266 fd_set fdset; local
272 FD_ZERO(&fdset);
288 FD_SET(fd, &fdset);
297 err = select (nfds, &fdset, NULL, NULL, NULL);
317 if (FD_ISSET(fd, &fdset)) {
  /external/ipsec-tools/
main.c 145 fd_set fdset; local
181 FD_ZERO(&fdset);
182 FD_SET(lcconf->sock_pfkey, &fdset);
185 FD_SET(p->sock, &fdset);
193 fd_set readset = fdset;
  /external/qemu/distrib/sdl-1.2.12/src/audio/dma/
SDL_dmaaudio.c 140 fd_set fdset; local
166 FD_ZERO(&fdset);
167 FD_SET(audio_fd, &fdset);
173 if ( select(audio_fd+1, NULL, &fdset, NULL, &timeout) <= 0 ) {
  /external/qemu/distrib/sdl-1.2.12/src/audio/paudio/
SDL_paudio.c 127 fd_set fdset; local
143 FD_ZERO(&fdset);
144 FD_SET(audio_fd, &fdset);
168 if ( select(audio_fd+1, NULL, &fdset, NULL, &timeout) <= 0 ) {
  /external/qemu/slirp/
misc.c 762 fd_set fdset; local
764 FD_ZERO(&fdset);
769 select(0, &fdset, &fdset, &fdset, &t);
  /external/quake/quake/src/WinQuake/
sys_linux.cpp 323 fd_set fdset; local
327 FD_ZERO(&fdset);
328 FD_SET(0, &fdset); // stdin
331 if (select (1, &fdset, NULL, NULL, &timeout) == -1 || !FD_ISSET(0, &fdset))
  /hardware/msm7k/librpc/
svc.c 81 fd_set fdset; member in struct:SVCXPRT
114 rfds = xprt->fdset;
155 FD_ZERO(&xprt->fdset);
261 FD_SET(svc->xdr->fd, &xprt->fdset);
318 FD_CLR(found->xdr->fd, &xprt->fdset);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbevents.c 463 fd_set fdset; local
476 FD_ZERO(&fdset);
477 FD_SET(fd, &fdset);
480 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
501 fd_set fdset; local
505 FD_ZERO(&fdset);
506 FD_SET(fd, &fdset);
509 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
520 FD_ZERO(&fdset);
521 FD_SET(fd, &fdset);
1033 fd_set fdset; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.c 471 fd_set fdset; local
479 FD_ZERO (&fdset);
481 FD_SET (kbfd, &fdset);
485 if (select (max_fd + 1, &fdset, 0, 0, &zero) > 0) {
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsevents.c 404 fd_set fdset; local
415 FD_ZERO(&fdset);
416 FD_SET(fd, &fdset);
419 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
440 fd_set fdset; local
444 FD_ZERO(&fdset);
445 FD_SET(fd, &fdset);
448 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
459 FD_ZERO(&fdset);
460 FD_SET(fd, &fdset);
783 fd_set fdset; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11events.c 903 fd_set fdset; local
906 FD_ZERO(&fdset);
907 FD_SET(x11_fd, &fdset);
908 if ( select(x11_fd+1, &fdset, NULL, NULL, &zero_time) == 1 ) {
    [all...]

Completed in 2744 milliseconds