Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/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.java424 public boolean copsResponse(BluetoothDevice device, String operatorName) { in copsResponse() argument
425 return copsResponseNative(operatorName, Utils.getByteAddress(device)); in copsResponse()
518 private native boolean copsResponseNative(String operatorName, byte[] address); in copsResponseNative() argument
DHeadsetStateMachine.java1753 String operatorName = null; in processAtCops() local
1756 operatorName = serviceState.getOperatorAlpha(); in processAtCops()
1758 if (mSystemInterface.isInCall() || operatorName == null || operatorName.equals("")) { in processAtCops()
1760 operatorName = mSystemInterface.getNetworkOperator(); in processAtCops()
1762 if (operatorName == null) { in processAtCops()
1763 operatorName = ""; in processAtCops()
1765 mNativeInterface.copsResponse(device, operatorName); in processAtCops()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DRenameMobileNetworkDialogFragment.java185 final TextView operatorName = view.findViewById(R.id.operator_name_value); in populateView() local
188 operatorName.setText(serviceState == null ? "" : serviceState.getOperatorAlphaLong()); in populateView()