Home
last modified time | relevance | path

Searched refs:startable (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/stylus/
H A DStylusUsiPowerStartableTest.kt49 lateinit var startable: StylusUsiPowerStartable
55 startable =
82 startable.start()
89 startable.start()
96 startable.start()
98 verify(stylusManager, times(1)).registerCallback(startable)
103 startable.onStylusAdded(STYLUS_DEVICE_ID)
110 startable.onStylusAdded(EXTERNAL_DEVICE_ID)
119 startable.onStylusUsiBatteryStateChanged(STYLUS_DEVICE_ID, 123, batteryState)
128 startable.onStylusUsiBatteryStateChanged(STYLUS_DEVICE_ID, 123, batteryState)
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIApplication.java299 CoreStartable startable; in startAdditionalStartable() local
306 startable = (CoreStartable) Class.forName(clsName).newInstance(); in startAdditionalStartable()
315 return startStartable(startable); in startAdditionalStartable()
324 CoreStartable startable = provider.get(); in startStartable() local
326 return startStartable(startable); in startStartable()
329 private static CoreStartable startStartable(CoreStartable startable) { in startStartable() argument
330 if (DEBUG) Log.d(TAG, "running: " + startable); in startStartable()
333 Trace.TRACE_TAG_APP, startable.getClass().getSimpleName() + ".start()"); in startStartable()
335 startable.start(); in startStartable()
338 return startable; in startStartable()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/
H A DCollapsedStatusBarFragment.java284 for (Startable startable : mStatusBarFragmentComponent.getStartables()) { in onViewCreated()
285 mStartableStates.put(startable, Startable.State.STARTING); in onViewCreated()
286 startable.start(); in onViewCreated()
287 mStartableStates.put(startable, Startable.State.STARTED); in onViewCreated()
397 for (Startable startable : mStatusBarFragmentComponent.getStartables()) { in onDestroyView()
398 mStartableStates.put(startable, Startable.State.STOPPING); in onDestroyView()
399 startable.stop(); in onDestroyView()
400 mStartableStates.put(startable, Startable.State.STOPPED); in onDestroyView()
812 for (Startable startable : startables) { in dump()
813 Startable.State startableState = mStartableStates.getOrDefault(startable, in dump()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/dagger/
H A DQSPipelineModule.kt29 import com.android.systemui.qs.pipeline.domain.startable.QSPipelineCoreStartable
57 abstract fun provideCoreStartable(startable: QSPipelineCoreStartable): CoreStartable
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/domain/startable/
H A DSceneContainerStartableModule.kt17 package com.android.systemui.scene.domain.startable
H A DSceneContainerStartable.kt17 package com.android.systemui.scene.domain.startable
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/
H A DSceneContainerFrameworkModule.kt20 import com.android.systemui.scene.domain.startable.SceneContainerStartableModule
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFragmentStartable.kt46 fun bindsQSFragmentStartable(startable: QSFragmentStartable): CoreStartable
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/startable/
H A DQSPipelineCoreStartable.kt17 package com.android.systemui.qs.pipeline.domain.startable
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/scene/
H A DSceneFrameworkIntegrationTest.kt34 import com.android.systemui.scene.domain.startable.SceneContainerStartable
144 val startable = regex
155 startable.start()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
H A DKeyguardNotificationVisibilityProviderTest.java119 for (CoreStartable startable : component.getCoreStartables().values()) { in setup()
120 startable.start(); in setup()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/scene/domain/startable/
H A DSceneContainerStartableTest.kt19 package com.android.systemui.scene.domain.startable