Home
last modified time | relevance | path

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

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