Home
last modified time | relevance | path

Searched refs:operatorName (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Settings/src/com/android/settings/network/
DMobilePlanPreferenceController.java161 String operatorName = mTm.getSimOperatorName(); in onManageMobilePlanClick() local
162 if (TextUtils.isEmpty(operatorName)) { in onManageMobilePlanClick()
165 operatorName = mTm.getNetworkOperatorName(); in onManageMobilePlanClick()
166 if (TextUtils.isEmpty(operatorName)) { in onManageMobilePlanClick()
171 R.string.mobile_no_provisioning_url, operatorName); in onManageMobilePlanClick()
175 resources.getString(R.string.mobile_no_provisioning_url, operatorName); in onManageMobilePlanClick()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/network/
DMobilePlanPreferenceController.java160 String operatorName = mTm.getSimOperatorName(); in onManageMobilePlanClick() local
161 if (TextUtils.isEmpty(operatorName)) { in onManageMobilePlanClick()
164 operatorName = mTm.getNetworkOperatorName(); in onManageMobilePlanClick()
165 if (TextUtils.isEmpty(operatorName)) { in onManageMobilePlanClick()
170 R.string.mobile_no_provisioning_url, operatorName); in onManageMobilePlanClick()
174 resources.getString(R.string.mobile_no_provisioning_url, operatorName); in onManageMobilePlanClick()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetNativeInterface.java403 public boolean copsResponse(BluetoothDevice device, String operatorName) { in copsResponse() argument
404 return copsResponseNative(operatorName, Utils.getByteAddress(device)); in copsResponse()
493 private native boolean copsResponseNative(String operatorName, byte[] address); in copsResponseNative() argument
DHeadsetStateMachine.java1709 String operatorName = null; in processAtCops() local
1712 operatorName = serviceState.getOperatorAlpha(); in processAtCops()
1714 if (mSystemInterface.isInCall() || operatorName == null || operatorName.equals("")) { in processAtCops()
1716 operatorName = mSystemInterface.getNetworkOperator(); in processAtCops()
1718 if (operatorName == null) { in processAtCops()
1719 operatorName = ""; in processAtCops()
1721 mNativeInterface.copsResponse(device, operatorName); in processAtCops()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/network/telephony/
DRenameMobileNetworkDialogFragment.java122 final TextView operatorName = view.findViewById(R.id.operator_name_value); in populateView() local
124 operatorName.setText(serviceState.getOperatorAlphaLong()); in populateView()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DRenameMobileNetworkDialogFragment.java163 final TextView operatorName = view.findViewById(R.id.operator_name_value); in populateView() local
166 operatorName.setText(serviceState.getOperatorAlphaLong()); in populateView()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/
DRadioInfo.java186 private TextView operatorName; field in RadioInfo
420 operatorName = (TextView) findViewById(R.id.operator); in onCreate()
933 operatorName.setText(serviceState.getOperatorAlphaLong()); in updateServiceState()