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

  /external/libvncserver/examples/
1instance.c 51 fd_set fdset; local
54 FD_ZERO(&fdset);
55 FD_SET(str->fd,&fdset);
59 num_fds=select(str->fd+1,&fdset,NULL,NULL,&tv);
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_file.c 115 fd_set fdset; local
120 FD_ZERO ( &fdset );
121 FD_SET ( file_select->FileHandle, &fdset );
122 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {
  /packages/services/BuiltInPrintService/jni/lib/
printer.c 179 fd_set fdset; local
211 FD_ZERO(&fdset);
212 FD_SET(psock, &fdset);
220 if (select(psock + 1, NULL, &fdset, NULL, &tv) == 1) {
  /external/syslinux/gpxe/src/util/
hijack.c 299 fd_set fdset; local
314 FD_ZERO ( &fdset );
315 FD_SET ( fd, &fdset );
316 FD_SET ( hijack.fd, &fdset );
317 if ( select ( ( max_fd + 1 ), &fdset, NULL, NULL, 0 ) < 0 ) {
322 if ( FD_ISSET ( fd, &fdset ) ) {
329 if ( FD_ISSET ( hijack.fd, &fdset ) ) {
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
IPACM_Netlink.h 117 fd_set fdset; member in struct:__anon44440
  /external/openssh/
sshconnect.c 335 fd_set *fdset; local
359 fdset = xcalloc(howmany(sockfd + 1, NFDBITS),
361 FD_SET(sockfd, fdset);
365 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
400 free(fdset);
557 fd_set *fdset; local
560 fdset = xcalloc(1, fdsetsz);
579 FD_SET(connection_in, fdset);
580 rc = select(connection_in + 1, fdset, NULL,
581 fdset, &t_remaining)
    [all...]
sshd.c 1097 fd_set *fdset; local
1107 fdset = NULL;
1124 free(fdset);
1125 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
1129 FD_SET(listen_socks[i], fdset);
1132 FD_SET(startup_pipes[i], fdset);
1135 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1151 FD_ISSET(startup_pipes[i], fdset)) {
1163 if (!FD_ISSET(listen_socks[i], fdset))
    [all...]
  /external/mksh/src/
funcs.c 1720 fd_set fdset; local
    [all...]

Completed in 369 milliseconds