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

/freebsd-10.2-release/sys/rpc/
H A Dkrpc.h88 struct timeval ct_wait; /* wait interval in milliseconds */ member in struct:ct_data
H A Dclnt_bck.c145 ct->ct_wait.tv_sec = -1;
146 ct->ct_wait.tv_usec = -1;
235 if (ct->ct_wait.tv_usec == -1)
238 timeout = ct->ct_wait; /* use default timeout */
H A Dclnt_vc.c214 ct->ct_wait.tv_sec = -1;
215 ct->ct_wait.tv_usec = -1;
327 if (ct->ct_wait.tv_usec == -1) {
330 timeout = ct->ct_wait; /* use default timeout */
626 ct->ct_wait = *(struct timeval *)infop;
629 *(struct timeval *)infop = ct->ct_wait;
/freebsd-10.2-release/lib/libc/rpc/
H A Dclnt_vc.c108 struct timeval ct_wait; /* wait interval in milliseconds */ member in struct:ct_data
256 ct->ct_wait.tv_usec = 0;
351 ct->ct_wait = timeout;
568 ct->ct_wait = *(struct timeval *)infop;
572 *(struct timeval *)infop = ct->ct_wait;
697 int milliseconds = (int)((ct->ct_wait.tv_sec * 1000) +
698 (ct->ct_wait.tv_usec / 1000));

Completed in 201 milliseconds