Home
last modified time | relevance | path

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

/frameworks/base/services/core/jni/
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/time/
DSystemClockImpl.java22 public class SystemClockImpl implements SystemClock { class
24 public SystemClockImpl() {} in SystemClockImpl() method in SystemClockImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/
DUnfoldTransitionModule.kt44 import com.android.systemui.util.time.SystemClockImpl in <lambda>()
96 Optional.of(FoldStateLoggingProviderImpl(foldStateProvider.get(), SystemClockImpl())) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
DFlow.kt20 import com.android.systemui.util.time.SystemClockImpl in <lambda>()
216 fun <T> Flow<T>.throttle(periodMs: Long, clock: SystemClock = SystemClockImpl()): Flow<T> = in throttle()
/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
DSystemUIModule.java156 import com.android.systemui.util.time.SystemClockImpl;
370 abstract SystemClock bindSystemClock(SystemClockImpl systemClock); in bindSystemClock()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java99 import com.android.systemui.util.time.SystemClockImpl;
258 mSystemClock = new SystemClockImpl(); in NotificationTestHelper()