Home
last modified time | relevance | path

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

/art/runtime/base/
Dtime_utils.cc119 tm tmbuf; in GetIsoDate()
120 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate()
185 timespec tm; in NanoSleep() local
186 tm.tv_sec = ns / MsToNs(1000); in NanoSleep()
187 tm.tv_nsec = ns - static_cast<uint64_t>(tm.tv_sec) * MsToNs(1000); in NanoSleep()
188 nanosleep(&tm, nullptr); in NanoSleep()