Searched defs:operatorNumeric (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DOperatorInfo.java62 String operatorNumeric,
67 mOperatorNumeric = operatorNumeric;
75 String operatorNumeric,
78 operatorNumeric, rilStateToState(stateString));
83 String operatorNumeric) {
84 this(operatorAlphaLong, operatorAlphaShort, operatorNumeric, State.UNKNOWN);
150 in.readString(), /*operatorNumeric*/
60 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, State state) argument
73 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, String stateString) argument
81 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DLocaleTracker.java260 * @param operatorNumeric MCC/MNC of the operator
262 public synchronized void updateOperatorNumericSync(String operatorNumeric) { argument
264 if (DBG) log("updateOperatorNumericSync. mcc/mnc=" + operatorNumeric);
265 if (!Objects.equals(mOperatorNumeric, operatorNumeric)) {
266 String msg = "Operator numeric changes to " + operatorNumeric;
269 mOperatorNumeric = operatorNumeric;
294 * @param operatorNumeric MCC/MNC of the operator
296 public void updateOperatorNumericAsync(String operatorNumeric) { argument
297 if (DBG) log("updateOperatorNumericAsync. mcc/mnc=" + operatorNumeric);
298 sendMessage(obtainMessage(EVENT_UPDATE_OPERATOR_NUMERIC, operatorNumeric));
[all...]
H A DGsmCdmaPhone.java324 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC);
326 + "' operatorNumeric='" + operatorNumeric + "'");
331 if (!TextUtils.isEmpty(operatorNumeric)) {
332 logd("init: set 'gsm.sim.operator.numeric' to operator='" + operatorNumeric +
334 logd("update icc_operator_numeric=" + operatorNumeric);
335 tm.setSimOperatorNumericForPhone(mPhoneId, operatorNumeric);
337 SubscriptionController.getInstance().setMccMnc(operatorNumeric, getSubId());
339 setIsoCountryProperty(operatorNumeric);
341 logd("update mccmnc=" + operatorNumeric);
355 setIsoCountryProperty(String operatorNumeric) argument
2702 updateCurrentCarrierInProvider(String operatorNumeric) argument
[all...]
H A DServiceStateTracker.java1528 String operatorNumeric = ((TelephonyManager) mPhone.getContext().
1532 if (!TextUtils.isEmpty(operatorNumeric) && getCdmaMin() != null) {
1533 return (operatorNumeric + getCdmaMin());
2932 String operatorNumeric = mSS.getOperatorNumeric();
2936 if (isInvalidOperatorNumeric(operatorNumeric)) {
2938 operatorNumeric = fixUnknownMcc(operatorNumeric, sid);
2942 tm.setNetworkOperatorNumericForPhone(mPhone.getPhoneId(), operatorNumeric);
2944 if (isInvalidOperatorNumeric(operatorNumeric)) {
2945 if (DBG) log("operatorNumeric "
3166 setOperatorIdd(String operatorNumeric) argument
3180 isInvalidOperatorNumeric(String operatorNumeric) argument
3185 fixUnknownMcc(String operatorNumeric, int sid) argument
4490 inSameCountry(String operatorNumeric) argument
[all...]
H A DCommandsInterface.java1279 void setNetworkSelectionModeManual(String operatorNumeric, Message response); argument
H A DPhone.java238 * the carrier selection process. operatorNumeric can be ""
244 public String operatorNumeric; field in class:Phone.NetworkSelectMessage
1209 nsm.operatorNumeric = "";
1259 nsm.operatorNumeric = network.getOperatorNumeric();
1294 // nsm.operatorNumeric is "" if we're in automatic.selection.
1297 editor.putString(NETWORK_SELECTION_KEY + subId, nsm.operatorNumeric);
H A DRIL.java1662 public void setNetworkSelectionModeManual(String operatorNumeric, Message result) { argument
1670 + " operatorNumeric = " + operatorNumeric);
1675 convertNullToEmptyString(operatorNumeric));
/frameworks/base/telephony/java/android/telephony/data/
H A DApnSetting.java569 public static ApnSetting makeApnSetting(int id, String operatorNumeric, String entryName, argument
577 .setOperatorNumeric(operatorNumeric)
1015 final String operatorNumeric = in.readString();
1033 return makeApnSetting(id, operatorNumeric, entryName, apnName,
1347 * @param operatorNumeric the numeric operator ID to set for this entry
1349 public Builder setOperatorNumeric(String operatorNumeric) { argument
1350 this.mOperatorNumeric = operatorNumeric;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java337 String operatorNumeric, Message response) {
336 setNetworkSelectionModeManual( String operatorNumeric, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java338 String operatorNumeric, Message response) {
337 setNetworkSelectionModeManual( String operatorNumeric, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1395 String operatorNumeric, Message result) {unimplemented(result);}
1394 setNetworkSelectionModeManual( String operatorNumeric, Message result) argument
H A DSimulatedCommandsVerifier.java947 public void setNetworkSelectionModeManual(String operatorNumeric, Message response) { argument
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java5593 * @param operatorNumeric the PLMN ID of the network to select.
5601 public boolean setNetworkSelectionModeManual(String operatorNumeric, boolean persistSelection) { argument
5606 getSubId(), operatorNumeric, persistSelection);

Completed in 374 milliseconds