Home
last modified time | relevance | path

Searched refs:CoroutineScope (Results 1 – 25 of 175) sorted by relevance

1234567

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/condition/
H A DFakeCondition.java19 import kotlinx.coroutines.CoroutineScope;
26 FakeCondition(CoroutineScope scope) { in FakeCondition()
30 FakeCondition(CoroutineScope scope, Boolean initialValue, boolean overriding) { in FakeCondition()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
H A DCoroutinesModule.kt10 import kotlinx.coroutines.CoroutineScope
21 ): CoroutineScope = CoroutineScope(dispatcher)
/aosp14/frameworks/base/libs/dream/lowlight/src/com/android/dream/lowlight/dagger/
H A DLowLightDreamModule.kt27 import kotlinx.coroutines.CoroutineScope
76 fun providesApplicationScope(@Main dispatcher: CoroutineDispatcher): CoroutineScope {
77 return CoroutineScope(dispatcher)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/backlight/ui/
H A DKeyboardBacklightDialogCoordinator.kt27 import kotlinx.coroutines.CoroutineScope
43 @Application private val applicationScope: CoroutineScope,
50 @Application applicationScope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wallet/controller/
H A DWalletContextualLocationsService.kt12 import kotlinx.coroutines.CoroutineScope
28 private var scope: CoroutineScope = this.lifecycleScope
34 scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
H A DLocationBasedMobileViewModel.kt23 import kotlinx.coroutines.CoroutineScope
51 scope: CoroutineScope,
96 scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DCarrierConfigCoreStartable.kt22 import kotlinx.coroutines.CoroutineScope
33 @Application private val scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
H A DKeyguardSurfaceBehindViewBinder.kt21 import kotlinx.coroutines.CoroutineScope
33 scope: CoroutineScope
H A DWindowManagerLockscreenVisibilityViewBinder.kt21 import kotlinx.coroutines.CoroutineScope
33 scope: CoroutineScope
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/clipboardoverlay/
H A DClipboardImageLoaderTest.kt25 import kotlinx.coroutines.CoroutineScope
57 ClipboardImageLoader(mockContext, testDispatcher, CoroutineScope(testDispatcher))
73 ClipboardImageLoader(mockContext, testDispatcher, CoroutineScope(testDispatcher))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/process/condition/
H A DSystemProcessCondition.java25 import kotlinx.coroutines.CoroutineScope;
35 public SystemProcessCondition(@Application CoroutineScope scope, in SystemProcessCondition()
/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/condition/
H A DCondition.java36 import kotlinx.coroutines.CoroutineScope;
47 private final CoroutineScope mScope;
54 public Condition(CoroutineScope scope) { in Condition()
64 protected Condition(CoroutineScope scope, Boolean initialConditionMet, boolean overriding) { in Condition()
H A DConditionExtensions.kt4 import kotlinx.coroutines.CoroutineScope
15 scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/mediaprojection/appselector/
H A DMediaProjectionAppSelectorComponent.kt53 import kotlinx.coroutines.CoroutineScope
150 fun provideCoroutineScope(@Application applicationScope: CoroutineScope): CoroutineScope =
151 CoroutineScope(applicationScope.coroutineContext + SupervisorJob())
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DAnimateToScene.kt23 import kotlinx.coroutines.CoroutineScope
30 internal fun CoroutineScope.animateToScene(
103 private fun CoroutineScope.animate( regex
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/airplane/data/repository/
H A DAirplaneModeRepositoryImplTest.kt28 import kotlinx.coroutines.CoroutineScope
50 private lateinit var scope: CoroutineScope
57 scope = CoroutineScope(IMMEDIATE)
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/common/
H A DEntrySliceData.kt21 import kotlinx.coroutines.CoroutineScope
27 private val asyncRunnerScope = CoroutineScope(Dispatchers.IO)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/airplane/ui/viewmodel/
H A DAirplaneModeViewModelImplTest.kt27 import kotlinx.coroutines.CoroutineScope
49 private lateinit var scope: CoroutineScope
57 scope = CoroutineScope(IMMEDIATE)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/conditions/
H A DAssistantAttentionCondition.java26 import kotlinx.coroutines.CoroutineScope;
49 @Application CoroutineScope scope, in AssistantAttentionCondition()
H A DDreamCondition.java27 import kotlinx.coroutines.CoroutineScope;
46 @Application CoroutineScope scope, in DreamCondition()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
H A DPasswordBouncerViewModel.kt20 import kotlinx.coroutines.CoroutineScope
28 private val applicationScope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/
H A DWifiRepositoryHelper.kt32 import kotlinx.coroutines.CoroutineScope
48 scope: CoroutineScope,
78 scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/preview/
H A DKeyguardRemotePreviewManager.kt35 import kotlinx.coroutines.CoroutineScope
43 @Application private val applicationScope: CoroutineScope,
104 private val scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/domain/interactor/
H A DKeyguardTransitionInteractorFactory.kt23 import kotlinx.coroutines.CoroutineScope
33 scope: CoroutineScope,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/interactor/
H A DRefreshUsersScheduler.kt26 import kotlinx.coroutines.CoroutineScope
36 @Application private val applicationScope: CoroutineScope,

1234567