/frameworks/opt/telephony/src/java/android/telephony/ |
SmsCbLocation.java | 26 * broadcast geographical scope is always PLMN wide. 32 /** The PLMN. Note that this field may be an empty string, but isn't allowed to be null. */ 49 * Construct a location object for the PLMN. This class is immutable, so 52 public SmsCbLocation(String plmn) { 53 mPlmn = plmn; 59 * Construct a location object for the PLMN, LAC, and Cell ID. This class is immutable, so 62 public SmsCbLocation(String plmn, int lac, int cid) { 63 mPlmn = plmn; 79 * @return the PLMN identifier (MCC+MNC) as a String 145 * @param plmn the PLMN to use for compariso [all...] |
CellBroadcastMessage.java | 118 String plmn; local 119 int plmnColumn = cursor.getColumnIndex(Telephony.CellBroadcasts.PLMN); 121 plmn = cursor.getString(plmnColumn); 123 plmn = null; 142 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); 232 cv.put(Telephony.CellBroadcasts.PLMN, location.getPlmn());
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
CarrierText.java | 43 public void onRefreshCarrierInfo(CharSequence plmn, CharSequence spn) { 44 mPlmn = plmn; 88 protected void updateCarrierText(State simState, CharSequence plmn, CharSequence spn) { 89 setText(getCarrierTextForSimState(simState, plmn, spn)); 113 * Top-level function for creating carrier text. Makes text based on simState, PLMN 117 * @param plmn 122 CharSequence plmn, CharSequence spn) { 127 carrierText = concatenate(plmn, spn); 136 mContext.getText(R.string.keyguard_network_locked_message), plmn); 146 plmn); [all...] |
KeyguardUpdateMonitorCallback.java | 50 * Called when the carrier PLMN or SPN changes. 52 * @param plmn The operator name of the registered network. May be null if it shouldn't 56 void onRefreshCarrierInfo(CharSequence plmn, CharSequence spn) { }
|
KeyguardUpdateMonitor.java | 508 // Take a guess at initial SIM state, battery status and PLMN until we get an update 762 if (DEBUG) Log.d(TAG, "handleCarrierInfoUpdate: plmn = " + mTelephonyPlmn 873 final String plmn = intent.getStringExtra(TelephonyIntents.EXTRA_PLMN); local [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmCellBroadcastHandler.java | 110 String plmn = SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC); local 126 location = new SmsCbLocation(plmn, lac, -1); 131 location = new SmsCbLocation(plmn, lac, cid); 136 location = new SmsCbLocation(plmn); 183 if (!info.matchesLocation(plmn, lac, cid)) { 221 // location (PLMN, plus LAC and CID if these are part of the geographical scope). 234 * @param plmn the current PLMN 239 public boolean matchesLocation(String plmn, int lac, int cid) { 240 return mLocation.isInLocationArea(plmn, lac, cid) [all...] |
GsmServiceStateTracker.java | 500 // The values of plmn/showPlmn change in different scenarios. 512 // EXTRA_PLMN = plmn 519 String plmn = null; local 527 plmn = Resources.getSystem(). 531 plmn = Resources.getSystem(). 535 "of service, set plmn='" + plmn + "'"); 538 plmn = mSS.getOperatorAlphaLong(); 539 showPlmn = !TextUtils.isEmpty(plmn) && 545 + showPlmn + " plmn=" + plmn) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaServiceStateTracker.java | 531 String plmn = mSS.getOperatorAlphaLong(); local 532 if (!TextUtils.equals(plmn, mCurPlmn)) { 533 // Allow A blank plmn, "" to set showPlmn to true. Previously, we 534 // would set showPlmn to true only if plmn was not empty, i.e. was not 537 boolean showPlmn = plmn != null; 540 " showPlmn='%b' plmn='%s'", showPlmn, plmn)); 547 intent.putExtra(TelephonyIntents.EXTRA_PLMN, plmn); 551 mCurPlmn = plmn; [all...] |
SmsMessage.java | 791 String plmn = SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC); local 792 SmsCbLocation location = new SmsCbLocation(plmn); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
SIMRecords.java | [all...] |
IsimUiccRecords.java | 243 public int getDisplayRule(String plmn) {
|
IccRecords.java | 426 * specified plmn (currently-registered PLMN). See TS 22.101 Annex A 432 public abstract int getDisplayRule(String plmn); 435 * Return true if "Restriction of menu options for manual PLMN selection"
|
RuimRecords.java | 715 public int getDisplayRule(String plmn) {
|
/external/wpa_supplicant_8/wpa_supplicant/ |
interworking.c | 602 u8 plmn[3], plmn2[3]; local 618 plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4); 619 plmn[1] = (imsi[2] - '0') | ((imsi[5] - '0') << 4); 620 plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4); 645 plmn[0], plmn[1], plmn[2], plmn2[0], plmn2[1], plmn2[2], 658 /* PLMN List */ 660 wpa_hexdump(MSG_DEBUG, "Interworking: PLMN List information element", 666 if (os_memcmp(pos, plmn, 3) == 0 | [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
NetworkController.java | [all...] |