Home
last modified time | relevance | path

Searched refs:ct_wait (Results 1 – 4 of 4) sorted by relevance

/freebsd/lib/libc/rpc/
H A Dclnt_vc.c105 struct timeval ct_wait; /* wait interval in milliseconds */ member
254 ct->ct_wait.tv_usec = 0; in clnt_vc_create()
338 ct->ct_wait = timeout; in clnt_vc_call()
555 ct->ct_wait = *(struct timeval *)infop; in clnt_vc_control()
559 *(struct timeval *)infop = ct->ct_wait; in clnt_vc_control()
669 int milliseconds = (int)((ct->ct_wait.tv_sec * 1000) + in read_vc()
670 (ct->ct_wait.tv_usec / 1000)); in read_vc()
/freebsd/sys/rpc/
H A Dclnt_bck.c142 ct->ct_wait.tv_sec = -1; in clnt_bck_create()
143 ct->ct_wait.tv_usec = -1; in clnt_bck_create()
230 if (ct->ct_wait.tv_usec == -1) in clnt_bck_call()
233 timeout = ct->ct_wait; /* use default timeout */ in clnt_bck_call()
H A Dclnt_vc.c217 ct->ct_wait.tv_sec = -1; in clnt_vc_create()
218 ct->ct_wait.tv_usec = -1; in clnt_vc_create()
333 if (ct->ct_wait.tv_usec == -1) { in clnt_vc_call()
336 timeout = ct->ct_wait; /* use default timeout */ in clnt_vc_call()
670 ct->ct_wait = *(struct timeval *)infop; in clnt_vc_control()
673 *(struct timeval *)infop = ct->ct_wait; in clnt_vc_control()
H A Dkrpc.h103 struct timeval ct_wait; /* wait interval in milliseconds */ member