Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiCarrierInfoManager.java393 String carrierName = intent.getStringExtra(EXTRA_CARRIER_NAME);
395 if (carrierName == null || carrierId == -1) {
402 handleUserAllowCarrierExemptionAction(carrierName, carrierId);
405 handleUserDisallowCarrierExemptionAction(carrierName, carrierId);
408 sendImsiPrivacyConfirmationDialog(carrierName, carrierId);
430 private void handleUserAllowCarrierExemptionAction(String carrierName, int carrierId) { in handleUserAllowCarrierExemptionAction() argument
431 Log.i(TAG, "User clicked to allow carrier:" + carrierName); in handleUserAllowCarrierExemptionAction()
439 private void handleUserDisallowCarrierExemptionAction(String carrierName, int carrierId) { in handleUserDisallowCarrierExemptionAction() argument
440 Log.i(TAG, "User clicked to disallow carrier:" + carrierName); in handleUserDisallowCarrierExemptionAction()
1690 String carrierName = getCarrierNameForSubId(getMatchingSubId(carrierId)); in sendImsiPrivacyNotification() local
[all …]
/packages/apps/Settings/src/com/android/settings/sim/
DSimActivationNotifier.java133 String carrierName = in sendNetworkConfigNotification() local
139 R.string.post_dsds_reboot_notification_title_with_carrier, carrierName); in sendNetworkConfigNotification()
161 String carrierName = getActiveCarrierName(); in sendSwitchedToRemovableSlotNotification() local
170 TextUtils.isEmpty(carrierName) in sendSwitchedToRemovableSlotNotification()
174 R.string.switch_to_removable_notification, carrierName); in sendSwitchedToRemovableSlotNotification()
/packages/apps/Settings/src/com/android/settings/network/
DProviderModelSlice.java209 String carrierName = mHelper.getMobileTitle(); in onNotifyChange() local
210 if (carrierName.equals(mContext.getString(R.string.mobile_data_settings_title))) { in onNotifyChange()
211 carrierName = mContext.getString( in onNotifyChange()
214 showMobileDataDisableDialog(getMobileDataDisableDialog(defaultSubId, carrierName)); in onNotifyChange()
229 AlertDialog getMobileDataDisableDialog(int defaultSubId, String carrierName) { in getMobileDataDisableDialog() argument
233 carrierName)) in getMobileDataDisableDialog()
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DCarrierIdProviderTest.java350 String carrierName = null; in testUpdateCurrentSubscription() local
358 carrierName = c.getString(1); in testUpdateCurrentSubscription()
363 assertEquals(test_name, carrierName); in testUpdateCurrentSubscription()
383 carrierName = c.getString(1); in testUpdateCurrentSubscription()
388 assertEquals(test_name, carrierName); in testUpdateCurrentSubscription()
DTelephonyProviderTest.java1894 final String carrierName = "name"; in testSIMAPNLIST_MatchTheMVNOAPN() local
1902 contentValues.put(Carriers.NAME, carrierName); in testSIMAPNLIST_MatchTheMVNOAPN()
1911 contentValues.put(Carriers.NAME, carrierName); in testSIMAPNLIST_MatchTheMVNOAPN()
1938 assertEquals(carrierName, cursor.getString(1)); in testSIMAPNLIST_MatchTheMVNOAPN()
1950 final String carrierName = "name"; in testSIMAPNLIST_MatchTheMNOAPN() local
1956 contentValues.put(Carriers.NAME, carrierName); in testSIMAPNLIST_MatchTheMNOAPN()
1973 assertEquals(carrierName, cursor.getString(1)); in testSIMAPNLIST_MatchTheMNOAPN()
1984 final String carrierName = "name"; in testSIMAPNLIST_MatchTheCarrierIDANDMNOAPN() local
1990 contentValues.put(Carriers.NAME, carrierName); in testSIMAPNLIST_MatchTheCarrierIDANDMNOAPN()
1997 contentValues.put(Carriers.NAME, carrierName); in testSIMAPNLIST_MatchTheCarrierIDANDMNOAPN()
[all …]
/packages/services/Telephony/testapps/TestRcsApp/aosp_test_rcsclient/src/com/android/libraries/rcs/simpleclient/filetransfer/
DFileTransferControllerImpl.java33 String contentServerUri, String carrierName) { in FileTransferControllerImpl() argument
35 carrierName); in FileTransferControllerImpl()
DFileUploadController.java85 String carrierName) { in FileUploadController() argument
88 this.mCarrierName = carrierName; in FileUploadController()
/packages/apps/Messaging/src/com/android/messaging/sms/
DSmsSender.java171 final String carrierName = PhoneUtils.get(subId).getCarrierName(); in getSendErrorToastMessage() local
172 if (TextUtils.isEmpty(carrierName)) { in getSendErrorToastMessage()
175 return context.getString(R.string.carrier_send_error, carrierName, errorCode); in getSendErrorToastMessage()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DMobileNetworkActivity.java317 CharSequence carrierName = ""; in maybeShowContactDiscoveryDialog() local
320 carrierName = SubscriptionUtil.getUniqueSubscriptionDisplayName(info, this); in maybeShowContactDiscoveryDialog()
332 fragment = ContactDiscoveryDialogFragment.newInstance(subId, carrierName); in maybeShowContactDiscoveryDialog()
DContactDiscoveryDialogFragment.java54 public static ContactDiscoveryDialogFragment newInstance(int subId, CharSequence carrierName) { in newInstance() argument
58 args.putCharSequence(CARRIER_NAME_KEY, carrierName); in newInstance()
/packages/apps/Contacts/src/com/android/contacts/model/
DSimCard.java72 public SimCard(String simId, int subscriptionId, CharSequence carrierName, in SimCard() argument
76 mCarrierName = carrierName; in SimCard()
/packages/services/Telephony/src/com/android/phone/
DNotificationMgr.java680 public void showLimitedSimFunctionWarningNotification(int subId, @Nullable String carrierName) { in showLimitedSimFunctionWarningNotification() argument
681 if (DBG) log("showLimitedSimFunctionWarningNotification carrier: " + carrierName in showLimitedSimFunctionWarningNotification()
705 R.string.limited_sim_function_notification_message).toString(), carrierName) : in showLimitedSimFunctionWarningNotification()
708 carrierName, line1Num); in showLimitedSimFunctionWarningNotification()
/packages/apps/Messaging/src/com/android/messaging/util/
DPhoneUtils.java444 final CharSequence carrierName = subInfo.getCarrierName(); in getCarrierName() local
445 if (carrierName != null) { in getCarrierName()
446 return carrierName.toString(); in getCarrierName()
/packages/services/Telephony/testapps/TestRcsApp/TestApp/src/com/google/android/sample/rcsclient/
DFileUploadActivity.java245 String carrierName = telephonyManager.getSimOperatorName(); in initFileTransferController() local
251 carrierName); in initFileTransferController()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/system/
DResetNetworkSubscriptionPreferenceControllerTest.java400 private SubscriptionInfo createSubInfo(int subId, String displayName, String carrierName, in createSubInfo() argument
406 when(subscriptionInfo.getCarrierName()).thenReturn(carrierName); in createSubInfo()
/packages/apps/Settings/src/com/android/settings/datausage/
DDataUsageSummaryPreference.java119 public void setUsageInfo(long cycleEnd, long snapshotTime, CharSequence carrierName, in setUsageInfo() argument
123 mCarrierName = carrierName; in setUsageInfo()
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/simstatus/
DSimStatusDialogControllerTest.java172 final CharSequence carrierName = "foobar"; in initialize_updateNetworkProviderWithFoobarCarrier_shouldUpdateCarrierWithFoobar() local
173 doReturn(carrierName).when(mSubscriptionInfo).getCarrierName(); in initialize_updateNetworkProviderWithFoobarCarrier_shouldUpdateCarrierWithFoobar()
177 verify(mDialog).setText(NETWORK_PROVIDER_VALUE_ID, carrierName); in initialize_updateNetworkProviderWithFoobarCarrier_shouldUpdateCarrierWithFoobar()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertDialog.java769 String carrierName = (String) tm.getSimSpecificCarrierIdName(); in insertCarrierNameIfNeeded() local
770 if (TextUtils.isEmpty(carrierName)) { in insertCarrierNameIfNeeded()
773 return message.replace(">", carrierName); in insertCarrierNameIfNeeded()
/packages/services/Telephony/src/com/android/phone/callcomposer/
DCallComposerPictureTransfer.java514 String carrierName = mContext.getSystemService(TelephonyManager.class)
524 carrierName, buildId, buildDate, "Android", buildVersion,
/packages/apps/Settings/src/com/android/settings/deviceinfo/simstatus/
DSimStatusDialogController.java326 final CharSequence carrierName = in updateNetworkProvider() local
328 mDialog.setText(NETWORK_PROVIDER_VALUE_ID, carrierName); in updateNetworkProvider()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiCarrierInfoManagerTest.java1959 private void validateImsiProtectionNotification(String carrierName) { in validateImsiProtectionNotification() argument
1968 assertTrue(content.toString().contains(carrierName)); in validateImsiProtectionNotification()
1987 private void sendBroadcastForUserActionOnImsi(String action, String carrierName, in sendBroadcastForUserActionOnImsi() argument
1991 .putExtra(WifiCarrierInfoManager.EXTRA_CARRIER_NAME, carrierName) in sendBroadcastForUserActionOnImsi()
/packages/apps/Settings/tests/unit/src/com/android/settings/network/
DProviderModelSliceTest.java400 AlertDialog getMobileDataDisableDialog(int defaultSubId, String carrierName) { in getMobileDataDisableDialog() argument
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DCarrierIdProvider.java394 cv.put(CarrierId.CARRIER_NAME, id.carrierName); in updateDatabaseFromPb()
/packages/modules/Wifi/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt1448 Landroid/net/wifi/ScanResult;->carrierName:Ljava/lang/String;