Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_SystemClockTime.cpp30 class SystemClockImpl { class
32 SystemClockImpl(const std::string &rtc_dev) : rtc_dev{rtc_dev} {} in SystemClockImpl() function in android::SystemClockImpl
40 int SystemClockImpl::setTime(struct timeval *tv) { in setTime()
89 std::unique_ptr<SystemClockImpl> system_clock{new SystemClockImpl(dev_rtc)}; in com_android_server_SystemClockTime_init()
95 SystemClockImpl *impl = reinterpret_cast<SystemClockImpl *>(nativeData); in com_android_server_SystemClockTime_setTime()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/time/
H A DSystemClockImpl.java22 public class SystemClockImpl implements SystemClock { class
24 public SystemClockImpl() {} in SystemClockImpl() method in SystemClockImpl
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/
H A DUnfoldTransitionModule.kt35 import com.android.systemui.util.time.SystemClockImpl
72 Optional.of(FoldStateLoggingProviderImpl(foldStateProvider.get(), SystemClockImpl()))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
H A DFlow.kt20 import com.android.systemui.util.time.SystemClockImpl
205 fun <T> Flow<T>.throttle(periodMs: Long): Flow<T> = this.throttle(periodMs, SystemClockImpl())
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
H A DSystemUIModule.java132 import com.android.systemui.util.time.SystemClockImpl;
310 abstract SystemClock bindSystemClock(SystemClockImpl systemClock); in bindSystemClock()