/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/ |
H A D | BouncerInteractor.kt | 48 @Application private val applicationContext: Context, 186 applicationContext.getString(R.string.keyguard_enter_your_pin) 188 applicationContext.getString(R.string.keyguard_enter_your_password) 190 applicationContext.getString(R.string.keyguard_enter_your_pattern) 197 is AuthenticationMethodModel.Pin -> applicationContext.getString(R.string.kg_wrong_pin) 199 applicationContext.getString(R.string.kg_wrong_password) 201 applicationContext.getString(R.string.kg_wrong_pattern) 213 applicationContext.getString(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/data/repository/ |
H A D | InstalledTilesComponentRepository.kt | 53 @Application private val applicationContext: Context, 63 if (applicationContext.userId == userId) { 64 applicationContext.packageManager 66 applicationContext 80 applicationContext.registerReceiverAsUser( 88 awaitClose { applicationContext.unregisterReceiver(receiver) }
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | BouncerViewModel.kt | 46 @Application private val applicationContext: Context, 63 applicationContext = applicationContext, 80 applicationContext = applicationContext, 119 applicationContext.getString(
|
H A D | PinBouncerViewModel.kt | 33 applicationContext: Context, 42 val pinShapes = PinShapeAdapter(applicationContext)
|
H A D | PatternBouncerViewModel.kt | 38 private val applicationContext: Context, 179 applicationContext.resources.getValue(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/interactor/ |
H A D | UserInteractor.kt | 90 @Application private val applicationContext: Context, 121 applicationContext.getString( 469 applicationContext, 570 context = applicationContext, 585 context = applicationContext, 649 val intent = Intent(applicationContext, SystemUISecondaryUserService::class.java) 653 applicationContext.stopServiceAsUser( 664 applicationContext.startServiceAsUser( 785 return checkNotNull(applicationContext.getDrawable(R.drawable.ic_account_circle)) 793 applicationContext.resources.getDimensionPixelSize( [all …]
|
H A D | GuestUserInteractor.kt | 53 @Application private val applicationContext: Context, 280 applicationContext, 323 val guestUser = manager.createGuest(applicationContext)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/ |
H A D | BiometricViewBinder.kt | 130 applicationContext = view.context.applicationContext, 449 private val applicationContext: Context, 466 .map { FaceManager.getErrorString(applicationContext, it, 0 /* vendorCode */) } 496 viewModel.showAuthenticating(modalities.asDefaultHelpMessage(applicationContext)) 509 helpMessage = if (msgId != null) applicationContext.getString(msgId) else "" 536 messageAfterError = modalities.asDefaultHelpMessage(applicationContext), 557 messageAfterError = modalities.asDefaultHelpMessage(applicationContext), 574 messageAfterError = modalities.asDefaultHelpMessage(applicationContext),
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/viewmodel/ |
H A D | CredentialViewModel.kt | 29 @Application private val applicationContext: Context, 43 icon = applicationContext.asLockIcon(request.userInfo.deviceCredentialOwnerId), 75 ?: applicationContext.asBadCredentialErrorMessage(p) 99 applicationContext.asBadCredentialErrorMessage(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | ControlsProviderSelectorActivity.kt | 108 recyclerView.layoutManager = LinearLayoutManager(applicationContext) 129 component = ComponentName(applicationContext, ControlsActivity::class.java) 209 val intent = Intent(applicationContext, ControlsFavoritingActivity::class.java) 231 Intent(applicationContext, ControlsActivity::class.java),
|
H A D | ControlsEditingActivity.kt | 179 applicationContext, 212 Intent(applicationContext, ControlsActivity::class.java),
|
H A D | ControlsFavoritingActivity.kt | 364 Intent(applicationContext, ControlsActivity::class.java), 421 return Prefs.getInt(applicationContext, TOOLTIP_PREFS_KEY, 0) < TOOLTIP_MAX_SHOWN
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/ |
H A D | AbstractService.java | 56 Context applicationContext = getApplicationContext(); in run() local 57 File resultFile = new File(applicationContext.getFilesDir(), getId()); in run() 73 MultiDex.install(applicationContext); in run() 90 new File(applicationContext.getFilesDir(), getId() + ".complete"), "rw"); in run()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/interactor/ |
H A D | CredentialInteractor.kt | 48 @Application private val applicationContext: Context, 103 applicationContext.getString( 123 applicationContext.getString( 142 applicationContext.getFinalAttemptMessageOrBlank(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | UserSwitcherController.kt | 43 @Application private val applicationContext: Context, 82 context = applicationContext,
|
/aosp14/frameworks/base/packages/SettingsLib/DeviceStateRotationLock/src/com.android.settingslib.devicestate/ |
H A D | DeviceStateRotationLockSettingsManager.java | 82 Context applicationContext = context.getApplicationContext(); in getInstance() local 83 ContentResolver contentResolver = applicationContext.getContentResolver(); in getInstance() 86 new DeviceStateRotationLockSettingsManager(applicationContext, secureSettings); in getInstance()
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/footer/ |
H A D | FooterActionsTestUtils.kt | 82 @Application context: Context = this.context.applicationContext, 148 @Application context: Context = this.context.applicationContext,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/data/repository/ |
H A D | PowerRepositoryImplTest.kt | 74 context.applicationContext, 193 assertThat(reasonCaptor.value).contains(context.applicationContext.packageName)
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/scene/ |
H A D | SceneTestUtils.kt | 171 applicationContext = context, 184 applicationContext = context,
|
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/common/ |
H A D | SpaEnvironment.kt | 76 val appContext: Context = context.applicationContext ?: context
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | AuthMethodBouncerViewModelTest.kt | 44 applicationContext = context,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/power/data/repository/ |
H A D | PowerRepository.kt | 49 @Application private val applicationContext: Context,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/telephony/ui/activity/ |
H A D | SwitchToManagedProfileForCallActivity.kt | 94 applicationContext.startActivityAsUser(
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/ui/viewmodel/ |
H A D | StatusBarUserChipViewModelTest.kt | 118 applicationContext = context, 249 applicationContext = context,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | SystemUIAppComponentFactoryBase.kt | 61 val initializer = createSystemUIInitializer(context.applicationContext)
|