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

  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
eth_utils.c 183 fd_set read_set; local
322 FD_ZERO(&read_set);
323 FD_SET(socket_id, &read_set);
324 FD_SET(module_pipe[0], &read_set);
330 result = select(max_fd_index, &read_set, NULL, NULL, NULL);
338 if (FD_ISSET(socket_id, &read_set))
351 if (FD_ISSET(module_pipe[0], &read_set))
console.c 275 fd_set read_set; local
303 FD_ZERO(&read_set);
304 FD_SET(0, &read_set);
305 FD_SET(ipc_pipe[0], &read_set);
306 FD_SET(wipp_control_general_process_out_pipe[0], &read_set);
312 result = select(max_fd_index, &read_set, NULL, NULL, NULL);
316 if (FD_ISSET(0, &read_set))
329 if (FD_ISSET(ipc_pipe[0], &read_set))
353 if (FD_ISSET(wipp_control_general_process_out_pipe[0], &read_set))
  /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);
  /system/wlan/ti/wilink_6_1/CUDK/os/linux/src/
ipc_event.c 511 fd_set read_set; /* File descriptors for select */ local
514 FD_ZERO(&read_set);
515 FD_SET(pIpcEventChild->STA_socket, &read_set);
516 FD_SET(pIpcEventChild->pipe_from_parent, &read_set);
520 &read_set, NULL, NULL, NULL);
523 &read_set, NULL, NULL, NULL);
532 if(FD_ISSET(pIpcEventChild->STA_socket, &read_set))
536 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 369 fd_set read_set; local
413 FD_ZERO (&read_set);
418 FD_SET (tty_fd, &read_set);
424 FD_SET (x_fd, &read_set);
429 &read_set, NULL, &err_set, NULL);
444 FD_ISSET (x_fd, &read_set),
451 if (FD_ISSET (tty_fd, &read_set))

Completed in 1408 milliseconds