Home | History | Annotate | Download | only in misc

Lines Matching defs:ts

43 	struct timestamp *ts = NULL;
45 if (!(ts = dm_malloc(sizeof(*ts))))
48 if (clock_gettime(CLOCK_MONOTONIC, &ts->t)) {
53 return ts;
92 struct timestamp *ts = NULL;
94 if (!(ts = dm_malloc(sizeof(*ts))))
97 if (gettimeofday(&ts->t, NULL)) {
102 return ts;