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

  /hardware/ti/wlan/wl1271/CUDK/os/linux/src/
ipc_event.c 524 fd_set read_set; /* File descriptors for select */ local
527 FD_ZERO(&read_set);
528 FD_SET(pIpcEventChild->STA_socket, &read_set);
529 FD_SET(pIpcEventChild->pipe_from_parent, &read_set);
533 &read_set, NULL, NULL, NULL);
536 &read_set, NULL, NULL, NULL);
545 if(FD_ISSET(pIpcEventChild->STA_socket, &read_set))
549 if(FD_ISSET(pIpcEventChild->pipe_from_parent, &read_set))
osapi.c 526 fd_set read_set; local
540 FD_ZERO(&read_set);
541 FD_SET(0, &read_set);
542 FD_SET(ipc_pipe[0], &read_set);
548 result = select(max_fd_index, &read_set, NULL, NULL, NULL);
552 if (FD_ISSET(0, &read_set))
561 if (FD_ISSET(ipc_pipe[0], &read_set))
588 os_error_printf(CU_MSG_ERROR, (PS8)"Input selection mismatch (0x%x)...\n", read_set);
  /external/dbus/tools/
dbus-launch.c 422 fd_set read_set; local
478 FD_ZERO (&read_set);
483 FD_SET (tty_fd, &read_set);
489 FD_SET (x_fd, &read_set);
494 &read_set, NULL, &err_set, NULL);
507 FD_ISSET (x_fd, &read_set),
513 if (FD_ISSET (tty_fd, &read_set))
  /external/dbus/dbus/
dbus-sysdeps-win.c 817 fd_set read_set, write_set; local
1077 fd_set read_set, write_set, err_set;
1083 FD_ZERO (&read_set);
1121 FD_SET (fdp->fd, &read_set);
1135 ready = select (max_fd + 1, &read_set, &write_set, &err_set,
1157 if (FD_ISSET (fdp->fd, &read_set))
1176 if (FD_ISSET (fdp->fd, &read_set))
    [all...]

Completed in 2756 milliseconds