Home
last modified time | relevance | path

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

/system/core/init/
Dutil.h38 uint64_t gettime_ns();
42 Timer() : t0(gettime_ns()) { in Timer()
46 return static_cast<double>(gettime_ns() - t0) / 1000000000.0; in duration()
Dutil.cpp293 uint64_t gettime_ns() { in gettime_ns() function
393 uint64_t timeout_time_ns = gettime_ns() + timeout * UINT64_C(1000000000); in wait_for_file()
396 while (gettime_ns() < timeout_time_ns && ((ret = stat(filename, &info)) < 0)) in wait_for_file()