Home
last modified time | relevance | path

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

/third_party/glib/gio/
Dgunixoutputstream.c329 int poll_ret; in g_unix_output_stream_write() local
348 poll_ret = g_poll (poll_fds, nfds, -1); in g_unix_output_stream_write()
351 while (poll_ret == -1 && errsv == EINTR); in g_unix_output_stream_write()
353 if (poll_ret == -1) in g_unix_output_stream_write()
408 int poll_ret; in g_unix_output_stream_writev() local
455 poll_ret = g_poll (poll_fds, nfds, -1); in g_unix_output_stream_writev()
458 while (poll_ret == -1 && errsv == EINTR); in g_unix_output_stream_writev()
460 if (poll_ret == -1) in g_unix_output_stream_writev()
Dgunixinputstream.c329 int poll_ret; in g_unix_input_stream_read() local
348 poll_ret = g_poll (poll_fds, nfds, -1); in g_unix_input_stream_read()
351 while (poll_ret == -1 && errsv == EINTR); in g_unix_input_stream_read()
353 if (poll_ret == -1) in g_unix_input_stream_read()
/third_party/toybox/toys/pending/
Dtftpd.c139 int poll_ret; in do_action() local
168 poll_ret = poll(pollfds, 1, timeout); in do_action()
169 if (poll_ret < 0 && (errno == EINTR || errno == ENOMEM)) goto POLL_INPUT; in do_action()
170 if (!poll_ret) { in do_action()
177 } else if (poll_ret == 1) { in do_action()