Home
last modified time | relevance | path

Searched refs:in_f (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/drivers/serial/
Duart_native_ptty.c167 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()
Duart_native_ptty_bottom.c40 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()
Duart_native_ptty_bottom.h23 int np_uart_stdin_poll_in_bottom(int in_f, unsigned char *p_char);