Home
last modified time | relevance | path

Searched refs:tm (Results 1 – 1 of 1) sorted by relevance

/art/runtime/base/
Dtime_utils.cc115 tm tmbuf; in GetIsoDate()
116 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate()
170 timespec tm; in NanoSleep() local
171 tm.tv_sec = ns / MsToNs(1000); in NanoSleep()
172 tm.tv_nsec = ns - static_cast<uint64_t>(tm.tv_sec) * MsToNs(1000); in NanoSleep()
173 nanosleep(&tm, nullptr); in NanoSleep()