Lines Matching defs:thetime
84 uint_t thetime;
101 res = _sendto(s, (char *)&thetime, sizeof (thetime), 0,
121 res = _recvfrom(s, (char *)&thetime, sizeof (thetime), 0,
133 res = read(s, (char *)&thetime, sizeof (thetime));
139 if (res != sizeof (thetime)) {
143 thetime = ntohl(thetime);
145 thetime = thetime - TOFFSET;
147 if (thetime > INT32_MAX)
148 thetime = INT32_MAX;
150 timep->tv_sec = thetime;