Lines Matching defs:ts
99 cdf_timestamp_to_timespec(struct timespec *ts, cdf_timestamp_t t)
108 ts->tv_nsec = (t % CDF_TIME_PREC) * 100;
137 ts->tv_sec = mktime(&tm);
138 if (ts->tv_sec == -1) {
147 cdf_timespec_to_timestamp(cdf_timestamp_t *t, const struct timespec *ts)
151 (void)&ts;
155 if (gmtime_r(&ts->ts_sec, &tm) == NULL) {
159 *t = (ts->ts_nsec / 100) * CDF_TIME_PREC;
189 struct timespec ts;
195 cdf_timestamp_to_timespec(&ts, tst);
196 p = cdf_ctime(&ts.tv_sec, buf);