Lines Matching refs:thetime
244 u_long thetime, delta; in __rpc_get_time_offset() local
349 (xdrproc_t)xdr_u_long, &thetime, tv); in __rpc_get_time_offset()
398 if (_sendto(s, &thetime, sizeof(thetime), 0, in __rpc_get_time_offset()
412 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0, in __rpc_get_time_offset()
434 res = _read(s, (char *)&thetime, sizeof(thetime)); in __rpc_get_time_offset()
435 if (res != sizeof(thetime)) { in __rpc_get_time_offset()
451 thetime = ntohl(thetime); in __rpc_get_time_offset()
452 thetime = thetime - TOFFSET; /* adjust to UNIX time */ in __rpc_get_time_offset()
454 thetime = 0; in __rpc_get_time_offset()
485 delta = (thetime > tv.tv_sec) ? thetime - tv.tv_sec : in __rpc_get_time_offset()
486 tv.tv_sec - thetime; in __rpc_get_time_offset()
487 td->tv_sec = (thetime < tv.tv_sec) ? - delta : delta; in __rpc_get_time_offset()