Home
last modified time | relevance | path

Searched refs:refreshBlueprint (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DKeyguardBlueprintInteractor.kt86 .collect { refreshBlueprint() } in <lambda>()
95 refreshBlueprint(refreshConfig) in <lambda>()
108 refreshBlueprint() in <lambda>()
126 fun refreshBlueprint(type: Type = Type.NoTransition) = refreshBlueprint(Config(type)) in <lambda>() method
129 fun refreshBlueprint(config: Config) = keyguardBlueprintRepository.refreshBlueprint(config) in <lambda>() method in com.android.systemui.keyguard.domain.interactor.KeyguardBlueprintInteractor
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
DKeyguardClockViewBinder.kt78 blueprintInteractor.refreshBlueprint(Type.ClockSize) in <lambda>()
92 blueprintInteractor.refreshBlueprint(Type.DefaultClockStepping) in <lambda>()
94 blueprintInteractor.refreshBlueprint(Type.DefaultTransition) in <lambda>()
107 blueprintInteractor.refreshBlueprint(Type.DefaultTransition) in <lambda>()
DKeyguardSmartspaceViewBinder.kt54 blueprintInteractor.refreshBlueprint( in <lambda>()
68 blueprintInteractor.refreshBlueprint( in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/
DKeyguardBlueprintInteractorTest.kt136 verify(keyguardBlueprintRepository, times(2)).refreshBlueprint(any()) in fingerprintPropertyInitialized_updatesBlueprint()
150 verify(keyguardBlueprintRepository, times(2)).refreshBlueprint(any()) in testRefreshFromConfigChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DKeyguardBlueprintRepository.kt92 fun refreshBlueprint(config: Config = Config.DEFAULT) { in <lambda>() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
DKeyguardBlueprintRepositoryTest.kt82 underTest.refreshBlueprint() in testRefreshBlueprint()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/layout/sections/
DDefaultShortcutsSection.kt73 .refreshBlueprint(IntraBlueprintTransition.Type.DefaultTransition) in <lambda>()