Lines Matching defs:timestamps
156 * only used if timestamps are enabled with __svc_nisplus_enable_timestamps().
158 static long *timestamps;
159 static int ntimestamps; /* keep track how many timestamps */
1155 if (timestamps && xprt->xp_fd < ntimestamps) {
1156 timestamps[xprt->xp_fd] = 0;
1257 if (timestamps) {
1262 long *tmp_timestamps = timestamps;
1264 /* allocate more timestamps */
1265 tmp_timestamps = realloc(timestamps,
1275 timestamps = tmp_timestamps;
1276 (void) memset(×tamps[ntimestamps], 0,
1280 timestamps[fd] = tv.tv_sec;
1320 * timestamps to record the activity so the
1906 if (!timestamps) {
1907 timestamps = calloc(FD_INCREMENT, sizeof (long));
1908 if (timestamps != NULL)
1944 if (timestamps[fd_idx] &&
1945 timestamps[fd_idx] < since) {