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

  /external/kernel-headers/original/linux/
poll.h 88 int get_fd_set(unsigned long nr, void __user *ufdset, unsigned long *fdset)
92 return copy_from_user(fdset, ufdset, nr) ? -EFAULT : 0;
94 memset(fdset, 0, nr);
99 set_fd_set(unsigned long nr, void __user *ufdset, unsigned long *fdset)
102 return __copy_to_user(ufdset, fdset, FDS_BYTES(nr));
107 void zero_fd_set(unsigned long nr, unsigned long *fdset)
109 memset(fdset, 0, FDS_BYTES(nr));
  /external/quake/quake/src/QW/server/
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);
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)
  /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))
  /frameworks/base/core/jni/
com_android_internal_os_ZygoteInit.cpp 224 fd_set fdset; local
230 FD_ZERO(&fdset);
246 FD_SET(fd, &fdset);
255 err = select (nfds, &fdset, NULL, NULL, NULL);
275 if (FD_ISSET(fd, &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/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/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/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/distrib/sdl-1.2.12/src/audio/sun/
SDL_sunaudio.c 154 fd_set fdset;
156 FD_ZERO(&fdset);
157 FD_SET(audio_fd, &fdset);
158 select(audio_fd+1, NULL, &fdset, NULL, NULL);
  /hardware/msm7k/librpc/
svc.c 82 fd_set fdset; member in struct:SVCXPRT
115 rfds = xprt->fdset;
160 FD_ZERO(&xprt->fdset);
266 FD_SET(svc->xdr->fd, &xprt->fdset);
323 FD_CLR(found->xdr->fd, &xprt->fdset);
  /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/slirp/
misc.c 762 fd_set fdset; local
764 FD_ZERO(&fdset);
769 select(0, &fdset, &fdset, &fdset, &t);
  /external/qemu/slirp-android/
misc.c 727 fd_set fdset;
729 FD_ZERO(&fdset);
734 select(0, &fdset, &fdset, &fdset, &t);
  /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...]
  /external/mksh/src/
funcs.c 1887 fd_set fdset; local
    [all...]

Completed in 933 milliseconds