Lines Matching refs:thetime
198 uint_t thetime; in __rpc_get_time_offset() local
415 xdr_u_int, (char *)&thetime, tv); in __rpc_get_time_offset()
529 tu_data.udata.buf = (char *)&thetime; in __rpc_get_time_offset()
530 tu_data.udata.len = (uint_t)sizeof (thetime); in __rpc_get_time_offset()
573 if (t_rcv(rtime_fd, (char *)&thetime, in __rpc_get_time_offset()
574 (uint_t)sizeof (thetime), &flag) != in __rpc_get_time_offset()
575 (uint_t)sizeof (thetime)) { in __rpc_get_time_offset()
588 thetime = ntohl(thetime); in __rpc_get_time_offset()
590 thetime = thetime - TOFFSET; in __rpc_get_time_offset()
592 thetime = 0; in __rpc_get_time_offset()
646 delta = (thetime > tv.tv_sec) ? thetime - tv.tv_sec : in __rpc_get_time_offset()
647 tv.tv_sec - thetime; in __rpc_get_time_offset()
648 td->tv_sec = (thetime < tv.tv_sec) ? - delta : delta; in __rpc_get_time_offset()