Home
last modified time | relevance | path

Searched refs:carrierName (Results 1 – 25 of 32) sorted by relevance

12

/aosp14/frameworks/base/telephony/java/android/telephony/euicc/
H A DDownloadableSubscription.java73 private String carrierName; field in DownloadableSubscription
93 carrierName = in.readString(); in DownloadableSubscription()
102 this.carrierName = carrierName; in DownloadableSubscription()
109 @Nullable private String carrierName; field in DownloadableSubscription.Builder
119 carrierName = baseSubscription.getCarrierName(); in Builder()
134 carrierName, accessRules); in build()
169 carrierName = value; in setCarrierName()
234 public void setCarrierName(String carrierName) { in setCarrierName() argument
235 this.carrierName = carrierName; in setCarrierName()
249 return carrierName; in getCarrierName()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DOperatorNameView.java63 CharSequence carrierName = null; in updateText() local
66 carrierName = subInfo.getCarrierName(); in updateText()
68 if (!TextUtils.isEmpty(carrierName) && subInfo.simReady()) { in updateText()
70 displayText = carrierName; in updateText()
H A DOperatorNameViewController.java197 CharSequence carrierName, in SubInfo() argument
201 mCarrierName = carrierName; in SubInfo()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/mobile/dataservice/
H A DSubscriptionInfoEntity.java36 String displayName, String carrierName, int dataRoaming, String mcc, String mnc, in SubscriptionInfoEntity() argument
48 this.carrierName = carrierName; in SubscriptionInfoEntity()
86 public String carrierName; field in SubscriptionInfoEntity
173 result = 31 * result + carrierName.hashCode(); in hashCode()
211 && TextUtils.equals(carrierName, info.carrierName) in equals()
245 .append(carrierName) in toString()
/aosp14/frameworks/base/packages/SimAppDialog/src/com/android/simappdialog/
H A DInstallCarrierAppActivity.java76 String carrierName = intent.getStringExtra(BUNDLE_KEY_CARRIER_NAME); in onCreate() local
77 if (!TextUtils.isEmpty(carrierName)) { in onCreate()
79 subtitle.setText(getString(R.string.install_carrier_app_description, carrierName)); in onCreate()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
H A DMobileIconsViewModelTest.kt98 carrierName = "Carrier 1",
108 carrierName = "Carrier 2",
113 carrierName = "Carrier 5",
118 carrierName = "Carrier 7",
331 carrierName = "Carrier 1",
337 carrierName = "Carrier 2",
343 carrierName = "Carrier 3",
/aosp14/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionInfo.java265 CharSequence carrierName, int nameSource, int iconTint, String number, int roaming, in SubscriptionInfo() argument
268 this(id, iccId, simSlotIndex, displayName, carrierName, nameSource, iconTint, number, in SubscriptionInfo()
283 CharSequence carrierName, int nameSource, int iconTint, String number, int roaming, in SubscriptionInfo() argument
287 this(id, iccId, simSlotIndex, displayName, carrierName, nameSource, iconTint, number, in SubscriptionInfo()
301 CharSequence carrierName, int nameSource, int iconTint, String number, int roaming, in SubscriptionInfo() argument
308 this(id, iccId, simSlotIndex, displayName, carrierName, nameSource, iconTint, number, in SubscriptionInfo()
322 CharSequence carrierName, int displayNameSource, int iconTint, String number, in SubscriptionInfo() argument
344 CharSequence carrierName, int nameSource, int iconTint, String number, int roaming, in SubscriptionInfo() argument
355 this.mCarrierName = carrierName; in SubscriptionInfo()
1338 public Builder setCarrierName(@Nullable CharSequence carrierName) { in setCarrierName() argument
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
H A DCarrierTextManagerLogger.kt46 fun logUpdateLoopStart(sub: Int, simState: Int, carrierName: String) {
53 str1 = carrierName
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
H A DLocationBasedMobileViewModel.kt106 val carrierName = interactor.carrierName regex
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DCarrierTextManager.java335 CharSequence carrierName = subs.get(i).getCarrierName(); in updateCarrierText() local
336 CharSequence carrierTextForSimState = getCarrierTextForSimState(simState, carrierName); in updateCarrierText()
337 mLogger.logUpdateLoopStart(subId, simState, String.valueOf(carrierName)); in updateCarrierText()
524 CharSequence carrierName) { in makeCarrierStringOnLocked() argument
526 final boolean carrierNameValid = !TextUtils.isEmpty(carrierName); in makeCarrierStringOnLocked()
529 carrierName, simMessage); in makeCarrierStringOnLocked()
533 return carrierName; in makeCarrierStringOnLocked()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DMobileRepositorySwitcherTest.kt250 whenever(it.carrierName).thenReturn(SUB_1_NAME)
255 carrierName = SUB_1_NAME,
263 whenever(it.carrierName).thenReturn(SUB_2_NAME)
268 carrierName = SUB_2_NAME,
H A DFakeMobileConnectionRepository.kt58 override val carrierName: MutableStateFlow<NetworkNameModel> =
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
H A DFullMobileConnectionRepository.kt293 override val carrierName =
295 .flatMapLatest { it.carrierName }
299 initialValue = activeRepo.value.carrierName.value,
301 .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.carrierName.value)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/
H A DMobileIconInteractor.kt100 val carrierName: StateFlow<String>
174 override val carrierName =
175 combine(connectionRepository.operatorAlphaShort, connectionRepository.carrierName) {
187 connectionRepository.carrierName.value.name
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/model/
H A DSubscriptionModel.kt39 val carrierName: String,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/
H A DInternetDialog.java678 CharSequence carrierName = getMobileNetworkTitle(mDefaultDataSubId); in showTurnOffMobileDialog() local
680 if (TextUtils.isEmpty(carrierName) || !isInService) { in showTurnOffMobileDialog()
681 carrierName = mContext.getString(R.string.mobile_data_disable_message_default_carrier); in showTurnOffMobileDialog()
685 .setMessage(mContext.getString(R.string.mobile_data_disable_message, carrierName)) in showTurnOffMobileDialog()
704 CharSequence carrierName = getMobileNetworkTitle(mDefaultDataSubId); in showTurnOffAutoDataSwitchDialog() local
705 if (TextUtils.isEmpty(carrierName)) { in showTurnOffAutoDataSwitchDialog()
706 carrierName = mContext.getString(R.string.mobile_data_disable_message_default_carrier); in showTurnOffAutoDataSwitchDialog()
709 .setTitle(mContext.getString(R.string.auto_data_switch_disable_title, carrierName)) in showTurnOffAutoDataSwitchDialog()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/binder/
H A DShadeCarrierBinder.kt38 launch { viewModel.carrierName.collect { carrierTextView.text = it } }
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/
H A DDemoMobileConnectionRepository.kt190 override val carrierName =
207 carrierName.value = NetworkNameModel.SubscriptionDerived("${event.name} ${event.subId}")
238 carrierName.value = NetworkNameModel.SubscriptionDerived(CARRIER_MERGED_NAME)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/
H A DMobileIconsInteractorTest.kt809 carrierName = "Carrier ${subscriptionIds.first}"
817 carrierName = "Carrier ${opportunistic.second}"
827 SubscriptionModel(subscriptionId = SUB_1_ID, carrierName = "Carrier $SUB_1_ID")
832 SubscriptionModel(subscriptionId = SUB_2_ID, carrierName = "Carrier $SUB_2_ID")
841 carrierName = "Carrier $SUB_3_ID"
851 carrierName = "Carrier $SUB_4_ID"
H A DFakeMobileIconInteractor.kt53 override val carrierName = MutableStateFlow("demo mode")
H A DMobileIconInteractorTest.kt67 carrierName = DEFAULT_NAME,
424 val job = underTest.carrierName.onEach { latest = it }.launchIn(this)
429 connectionRepository.carrierName.value = DEFAULT_NAME_MODEL
440 connectionRepository.carrierName.value =
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DMobileConnectionRepository.kt128 val carrierName: StateFlow<NetworkNameModel>
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/
H A DDemoMobileConnectionParameterizedTest.kt142 launch { conn.carrierName.collect {} }
166 assertThat(conn.carrierName.value)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
H A DMobileConnectionsRepositoryTest.kt1206 whenever(it.carrierName).thenReturn(SUB_1_NAME)
1212 carrierName = SUB_1_NAME,
1223 whenever(it.carrierName).thenReturn(SUB_2_NAME)
1229 carrierName = SUB_2_NAME,
1262 whenever(it.carrierName).thenReturn(SUB_CM_NAME)
1265 SubscriptionModel(subscriptionId = SUB_CM_ID, carrierName = SUB_CM_NAME)
H A DMobileConnectionRepositoryTest.kt131 carrierName = DEFAULT_NAME,
741 val job = underTest.carrierName.onEach { latest = it }.launchIn(this)
746 carrierName = DEFAULT_NAME,
755 carrierName = updatedName,
767 val job = underTest.carrierName.onEach { latest = it }.launchIn(this)

12