Home
last modified time | relevance | path

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

/freebsd-14.2/lib/libc/rpc/
H A Dclnt_vc.c110 struct timeval ct_wait; /* wait interval in milliseconds */ member
259 ct->ct_wait.tv_usec = 0; in clnt_vc_create()
343 ct->ct_wait = timeout; in clnt_vc_call()
560 ct->ct_wait = *(struct timeval *)infop; in clnt_vc_control()
564 *(struct timeval *)infop = ct->ct_wait; in clnt_vc_control()
674 int milliseconds = (int)((ct->ct_wait.tv_sec * 1000) + in read_vc()
675 (ct->ct_wait.tv_usec / 1000)); in read_vc()
/freebsd-14.2/sys/rpc/
H A Dclnt_bck.c147 ct->ct_wait.tv_sec = -1; in clnt_bck_create()
148 ct->ct_wait.tv_usec = -1; in clnt_bck_create()
235 if (ct->ct_wait.tv_usec == -1) in clnt_bck_call()
238 timeout = ct->ct_wait; /* use default timeout */ in clnt_bck_call()
H A Dclnt_vc.c222 ct->ct_wait.tv_sec = -1; in clnt_vc_create()
223 ct->ct_wait.tv_usec = -1; in clnt_vc_create()
338 if (ct->ct_wait.tv_usec == -1) { in clnt_vc_call()
341 timeout = ct->ct_wait; /* use default timeout */ in clnt_vc_call()
675 ct->ct_wait = *(struct timeval *)infop; in clnt_vc_control()
678 *(struct timeval *)infop = ct->ct_wait; in clnt_vc_control()
H A Dkrpc.h103 struct timeval ct_wait; /* wait interval in milliseconds */ member