Lines Matching refs:endtp
117 * time becomes `endtp'. The buffer pointed to by `*valuep' will be
122 const struct timeval *endtp)
127 retval = ipmp_read(fd, typep, sizeof (*typep), endtp);
131 retval = ipmp_read(fd, lenp, sizeof (*lenp), endtp);
143 (void) ipmp_read(fd, value, *lenp, endtp);
147 retval = ipmp_read(fd, value, *lenp, endtp);
204 * to by `buf' before the current time becomes `endtp'; a `endtp' of NULL
208 ipmp_read(int fd, void *buffer, size_t buflen, const struct timeval *endtp)
222 if (endtp != NULL) {
226 timeleft = (endtp->tv_sec - curtime.tv_sec) * MILLISEC;
227 timeleft += (endtp->tv_usec - curtime.tv_usec) / 1000;