HomeSort by relevance Sort by last modified time
    Searched refs:plmn (Results 1 - 16 of 16) sorted by null

  /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/policy/src/com/android/internal/policy/impl/keyguard/
CarrierText.java 40 public void onRefreshCarrierInfo(CharSequence plmn, CharSequence spn) {
41 mPlmn = plmn;
75 protected void updateCarrierText(State simState, CharSequence plmn, CharSequence spn) {
76 CharSequence text = getCarrierTextForSimState(simState, plmn, spn);
104 * Top-level function for creating carrier text. Makes text based on simState, PLMN
108 * @param plmn
113 CharSequence plmn, CharSequence spn) {
118 carrierText = concatenate(plmn, spn);
127 mContext.getText(R.string.lockscreen_network_locked_message), plmn);
137 plmn);
    [all...]
KeyguardUpdateMonitorCallback.java 42 * Called when the carrier PLMN or SPN changes.
44 * @param plmn The operator name of the registered network. May be null if it shouldn't
48 void onRefreshCarrierInfo(CharSequence plmn, CharSequence spn) { }
KeyguardUpdateMonitor.java 458 // Take a guess at initial SIM state, battery status and PLMN until we get an update
701 if (DEBUG) Log.d(TAG, "handleCarrierInfoUpdate: plmn = " + mTelephonyPlmn
796 * @return The string to use for the plmn, or null if it should not be shown.
800 final String plmn = intent.getStringExtra(TelephonyIntents.EXTRA_PLMN); local
801 return (plmn != null) ? plmn : getDefaultPlmn();
807 * @return The default plmn (no service)
815 * @return The string to use for the plmn, or null if it should not be shown.
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
CarrierLabel.java 91 void updateNetworkName(boolean showSpn, String spn, boolean showPlmn, String plmn) {
94 + " showPlmn=" + showPlmn + " plmn=" + plmn);
98 final boolean plmnValid = showPlmn && !TextUtils.isEmpty(plmn);
101 str = plmn + "|" + spn;
103 str = plmn;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 362 // location (PLMN, plus LAC and CID if these are part of the geographical scope).
375 * @param plmn the current PLMN
380 public boolean matchesLocation(String plmn, int lac, int cid) {
381 return mLocation.isInLocationArea(plmn, lac, cid);
412 String plmn = SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC); local
428 location = new SmsCbLocation(plmn, lac, -1);
433 location = new SmsCbLocation(plmn, lac, cid);
438 location = new SmsCbLocation(plmn);
488 if (!info.matchesLocation(plmn, lac, cid))
    [all...]
GsmServiceStateTracker.java 489 // The values of plmn/showPlmn change in different scenarios.
501 // EXTRA_PLMN = plmn
508 String plmn = null; local
516 plmn = Resources.getSystem().
520 plmn = Resources.getSystem().
524 "of service, set plmn='" + plmn + "'");
527 plmn = mSS.getOperatorAlphaLong();
528 showPlmn = !TextUtils.isEmpty(plmn) &&
534 + showPlmn + " plmn=" + plmn)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 525 String plmn = mSS.getOperatorAlphaLong(); local
526 if (!TextUtils.equals(plmn, mCurPlmn)) {
527 // Allow A blank plmn, "" to set showPlmn to true. Previously, we
528 // would set showPlmn to true only if plmn was not empty, i.e. was not
531 boolean showPlmn = plmn != null;
534 " showPlmn='%b' plmn='%s'", showPlmn, plmn));
541 intent.putExtra(TelephonyIntents.EXTRA_PLMN, plmn);
545 mCurPlmn = plmn;
    [all...]
SmsMessage.java 767 String plmn = SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC); local
768 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 604 u8 plmn[3]; local
609 plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
610 plmn[1] = imsi[2] - '0';
613 plmn[1] |= (imsi[5] - '0') << 4;
615 plmn[1] |= 0xf0;
616 plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
646 /* PLMN List */
652 if (os_memcmp(pos, plmn, 3) == 0)
653 return 1; /* Found matching PLMN */
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java     [all...]

Completed in 1006 milliseconds