Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H A Dsoftbus_adapter_timer.c31 #define US_PER_MSECOND 1000 macro
119 tm.tv_usec = (ms % MS_PER_SECOND) * US_PER_MSECOND; in SoftBusSleepMs()
164 return (uint64_t)time.tv_sec * MS_PER_SECOND + (uint64_t)time.tv_usec / US_PER_MSECOND; in SoftBusGetSysTimeMs()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/kernel/liteos_m/
H A Dsoftbus_adapter_timer.c26 #define US_PER_MSECOND 1000 macro
126 uint64_t ms = (uint64_t)time.tv_sec * MS_PER_SECOND + (uint64_t)time.tv_usec / US_PER_MSECOND; in SoftBusGetSysTimeMs()