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

  /external/qemu/distrib/sdl-1.2.15/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 ) {
  /frameworks/base/core/jni/
com_android_internal_os_ZygoteInit.cpp 194 fd_set fdset; local
200 FD_ZERO(&fdset);
216 FD_SET(fd, &fdset);
225 err = select (nfds, &fdset, NULL, NULL, NULL);
245 if (FD_ISSET(fd, &fdset)) {
  /external/qemu/distrib/sdl-1.2.15/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.15/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/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11events.c 918 fd_set fdset; local
921 FD_ZERO(&fdset);
922 FD_SET(x11_fd, &fdset);
923 if ( select(x11_fd+1, &fdset, NULL, NULL, &zero_time) == 1 ) {
    [all...]
  /external/openssh/
sshconnect.c 246 fd_set *fdset; local
270 fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS),
272 FD_SET(sockfd, fdset);
276 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
311 xfree(fdset);
448 fd_set *fdset; local
451 fdset = xcalloc(1, fdsetsz);
460 FD_SET(connection_in, fdset);
461 rc = select(connection_in + 1, fdset, NULL,
462 fdset, &t_remaining)
    [all...]
sshd.c 1095 fd_set *fdset; local
1104 fdset = NULL;
1121 if (fdset != NULL)
1122 xfree(fdset);
1123 fdset = (fd_set *)xcalloc(howmany(maxfd + 1, NFDBITS),
1127 FD_SET(listen_socks[i], fdset);
1130 FD_SET(startup_pipes[i], fdset);
1133 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1153 FD_ISSET(startup_pipes[i], fdset)) {
1165 if (!FD_ISSET(listen_socks[i], fdset))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbevents.c 464 fd_set fdset; local
477 FD_ZERO(&fdset);
478 FD_SET(fd, &fdset);
481 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
504 fd_set fdset; local
508 FD_ZERO(&fdset);
509 FD_SET(fd, &fdset);
512 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
525 FD_ZERO(&fdset);
526 FD_SET(fd, &fdset);
1042 fd_set fdset; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/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.15/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/mksh/src/
funcs.c 1913 fd_set fdset; local
    [all...]

Completed in 1045 milliseconds