Home
last modified time | relevance | path

Searched refs:read_set (Results 1 – 2 of 2) sorted by relevance

/hardware/ti/wlan/wl1271/CUDK/os/linux/src/
Dosapi.c526 fd_set read_set; in os_getInputString() local
540 FD_ZERO(&read_set); in os_getInputString()
541 FD_SET(0, &read_set); in os_getInputString()
542 FD_SET(ipc_pipe[0], &read_set); in os_getInputString()
548 result = select(max_fd_index, &read_set, NULL, NULL, NULL); in os_getInputString()
552 if (FD_ISSET(0, &read_set)) in os_getInputString()
561 if (FD_ISSET(ipc_pipe[0], &read_set)) in os_getInputString()
588 os_error_printf(CU_MSG_ERROR, (PS8)"Input selection mismatch (0x%x)...\n", read_set); in os_getInputString()
Dipc_event.c524 fd_set read_set; /* File descriptors for select */ in IpcEvent_Child() local
527 FD_ZERO(&read_set); in IpcEvent_Child()
528 FD_SET(pIpcEventChild->STA_socket, &read_set); in IpcEvent_Child()
529 FD_SET(pIpcEventChild->pipe_from_parent, &read_set); in IpcEvent_Child()
533 &read_set, NULL, NULL, NULL); in IpcEvent_Child()
536 &read_set, NULL, NULL, NULL); in IpcEvent_Child()
545 if(FD_ISSET(pIpcEventChild->STA_socket, &read_set)) in IpcEvent_Child()
549 if(FD_ISSET(pIpcEventChild->pipe_from_parent, &read_set)) in IpcEvent_Child()