Home
last modified time | relevance | path

Searched refs:pollfd (Results 1 – 13 of 13) sorted by relevance

/sunrpc/
A Dsvc_run.c56 struct pollfd *my_pollfd = NULL; in libc_hidden_nolink_sunrpc()
67 struct pollfd *new_pollfd in libc_hidden_nolink_sunrpc()
68 = realloc (my_pollfd, sizeof (struct pollfd) * max_pollfd); in libc_hidden_nolink_sunrpc()
A Dsvc_tcp.c326 struct pollfd pollfd; in readtcp() local
330 pollfd.fd = sock; in readtcp()
331 pollfd.events = POLLIN; in readtcp()
332 switch (__poll (&pollfd, 1, milliseconds)) in readtcp()
341 if ((pollfd.revents & POLLERR) || (pollfd.revents & POLLHUP) in readtcp()
342 || (pollfd.revents & POLLNVAL)) in readtcp()
347 while ((pollfd.revents & POLLIN) == 0); in readtcp()
A Dsvc_unix.c428 struct pollfd pollfd; in readunix() local
432 pollfd.fd = sock; in readunix()
433 pollfd.events = POLLIN; in readunix()
434 switch (__poll (&pollfd, 1, milliseconds)) in readunix()
443 if ((pollfd.revents & POLLERR) || (pollfd.revents & POLLHUP) in readunix()
444 || (pollfd.revents & POLLNVAL)) in readunix()
449 while ((pollfd.revents & POLLIN) == 0); in readunix()
A Drpc_common.c50 struct pollfd *svc_pollfd;
A Dsvc.c99 struct pollfd *new_svc_pollfd; in xprt_register()
115 new_svc_pollfd = (struct pollfd *) realloc (svc_pollfd, in xprt_register()
116 sizeof (struct pollfd) in xprt_register()
426 svc_getreq_poll (struct pollfd *pfdp, int pollretval) in libc_hidden_nolink_sunrpc()
434 register struct pollfd *p = &pfdp[i]; in libc_hidden_nolink_sunrpc()
A Drtime.c74 struct pollfd fd; in rtime()
A Drpc_thread.c104 struct pollfd ** in libc_hidden_nolink_sunrpc()
A Dpmap_rmt.c225 struct pollfd fd; in clnt_broadcast()
A Dclnt_tcp.c470 struct pollfd fd; in readtcp()
A Dclnt_unix.c538 struct pollfd fd; in readunix()
A Dclnt_udp.c285 struct pollfd fd; in clntudp_call()
/sunrpc/rpc/
A Drpc.h85 extern struct pollfd **__rpc_thread_svc_pollfd (void)
A Dsvc.h278 extern struct pollfd *svc_pollfd;
290 extern void svc_getreq_poll (struct pollfd *, const int) __THROW;

Completed in 24 milliseconds