Home
last modified time | relevance | path

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

/system/vold/
DBenchmark.cpp125 LOG(INFO) << "create took " << nanoseconds_to_milliseconds(create_d) << "ms"; in benchmark()
126 LOG(INFO) << "drop took " << nanoseconds_to_milliseconds(drop_d) << "ms"; in benchmark()
127 LOG(INFO) << "run took " << nanoseconds_to_milliseconds(run_d) << "ms"; in benchmark()
128 LOG(INFO) << "destroy took " << nanoseconds_to_milliseconds(destroy_d) << "ms"; in benchmark()
DTrimTask.cpp137 << " in " << nanoseconds_to_milliseconds(delta) << "ms"; in run()
/system/core/include/utils/
DTimers.h58 static CONSTEXPR inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs) in nanoseconds_to_milliseconds() function
72 static CONSTEXPR inline nsecs_t ns2ms(nsecs_t v) {return nanoseconds_to_milliseconds(v);} in ns2ms()
/system/core/libutils/
DSystemClock.cpp49 return (int64_t) nanoseconds_to_milliseconds(when); in uptimeMillis()
57 return nanoseconds_to_milliseconds(elapsedRealtimeNano()); in elapsedRealtime()
DLog.cpp31 int durationMillis = nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_BOOTTIME) - mStart); in ~LogIfSlow()