Lines Matching refs:timeval
63 extern int __rpc_timeval_to_msec(struct timeval *);
71 static bool_t time_not_ok(struct timeval *);
103 struct timeval cu_wait; /* retransmit interval */
104 struct timeval cu_total; /* total time for the call */
141 struct timeval now; in clnt_dg_create()
262 xdrproc_t xresults, caddr_t resultsp, struct timeval utimeout) in clnt_dg_call()
270 struct timeval time_waited; in clnt_dg_call()
273 struct timeval timeout; in clnt_dg_call()
274 struct timeval retransmit_time; in clnt_dg_call()
275 struct timeval poll_time; in clnt_dg_call()
276 struct timeval startime, curtime; in clnt_dg_call()
743 if (time_not_ok((struct timeval *)info)) { in clnt_dg_control()
748 cu->cu_total = *(struct timeval *)info; in clnt_dg_control()
752 *(struct timeval *)info = cu->cu_total; in clnt_dg_control()
760 if (time_not_ok((struct timeval *)info)) { in clnt_dg_control()
765 cu->cu_wait = *(struct timeval *)info; in clnt_dg_control()
769 *(struct timeval *)info = cu->cu_wait; in clnt_dg_control()
905 time_not_ok(struct timeval *t) in time_not_ok()