Searched refs:in_f (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/drivers/serial/ |
D | uart_native_ptty.c | 167 int in_f = ((struct native_uart_status *)dev->data)->in_fd; in np_uart_stdin_poll_in() local 175 rc = np_uart_stdin_poll_in_bottom(in_f, p_char); in np_uart_stdin_poll_in() 196 int in_f = ((struct native_uart_status *)dev->data)->in_fd; in np_uart_tty_poll_in() local 198 n = nsi_host_read(in_f, p_char, 1); in np_uart_tty_poll_in()
|
D | uart_native_ptty_bottom.c | 40 int np_uart_stdin_poll_in_bottom(int in_f, unsigned char *p_char) in np_uart_stdin_poll_in_bottom() argument 57 FD_SET(in_f, &readfds); in np_uart_stdin_poll_in_bottom() 59 ready = select(in_f+1, &readfds, NULL, NULL, &timeout); in np_uart_stdin_poll_in_bottom() 67 n = read(in_f, p_char, 1); in np_uart_stdin_poll_in_bottom()
|
D | uart_native_ptty_bottom.h | 23 int np_uart_stdin_poll_in_bottom(int in_f, unsigned char *p_char);
|