Lines Matching defs:ts
428 struct timespec ts = {};
431 status_t res = clock_gettime(CLOCK_BOOTTIME, &ts);
435 int64_t now = static_cast<int64_t>(ts.tv_sec) * kMsPerSec + ts.tv_nsec / kNsPerMs;
6248 struct timespec ts;
6250 rc = clock_gettime(CLOCK_MONOTONIC, &ts);
6266 ts.tv_sec += timeout;
6277 rc = pthread_cond_timedwait(&mRequestCond, &mMutex, &ts);