Home
last modified time | relevance | path

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

/aosp12/hardware/qcom/sm8150/gps/utils/
H A Dloc_misc_utils.cpp232 struct timespec curTs; in getBootTimeMilliSec() local
233 clock_gettime(CLOCK_BOOTTIME, &curTs); in getBootTimeMilliSec()
234 return (uint64_t)GET_MSEC_FROM_TS(curTs); in getBootTimeMilliSec()
/aosp12/hardware/qcom/sm7250/gps/utils/
H A Dloc_misc_utils.cpp232 struct timespec curTs; in getBootTimeMilliSec() local
233 clock_gettime(CLOCK_BOOTTIME, &curTs); in getBootTimeMilliSec()
234 return (uint64_t)GET_MSEC_FROM_TS(curTs); in getBootTimeMilliSec()
/aosp12/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.cpp557 struct timespec curTs; in main() local
558 clock_gettime(CLOCK_MONOTONIC, &curTs); in main()
559 elapsedNs += (curTs.tv_sec - prevTs.tv_sec) * 1000000000 + in main()
561 (curTs.tv_nsec - prevTs.tv_nsec); in main()
562 prevTs = curTs; in main()