HomeSort by relevance Sort by last modified time
    Searched defs:iccid (Results 1 - 9 of 9) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccSlotStatus.java 36 public String iccid; field in class:IccSlotStatus
82 .append("atr=").append(atr).append(",iccid=")
83 .append(SubscriptionInfo.givePrintableIccid(iccid));
103 && (TextUtils.equals(iccid, that.iccid));
CarrierTestOverride.java 52 <carrierTestOverride key="iccid" value="123456789012345678901"/>
68 static final String CARRIER_TEST_XML_ITEM_KEY_STRING_ICCID = "iccid";
140 String iccid = mCarrierTestParamMap.get(CARRIER_TEST_XML_ITEM_KEY_STRING_ICCID); local
141 Rlog.d(LOG_TAG, "reading iccid from CarrierTestConfig file: " + iccid);
142 return iccid;
144 Rlog.w(LOG_TAG, "No iccid in CarrierTestConfig file ");
160 void override(String mccmnc, String imsi, String iccid, String gid1, String gid2, String pnn,
165 mCarrierTestParamMap.put(CARRIER_TEST_XML_ITEM_KEY_STRING_ICCID, iccid);
IccCardStatus.java 69 public String iccid; field in class:IccCardStatus
151 sb.append(",iccid=").append(SubscriptionInfo.givePrintableIccid(iccid));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/simstatus/
SimStatusDialogControllerTest.java 287 final String iccid = "12351351231241"; local
290 doReturn(iccid).when(mController).getSimSerialNumber(anyInt());
294 verify(mDialog).setText(ICCID_INFO_VALUE_ID, iccid);
  /frameworks/base/telephony/java/android/telephony/euicc/
EuiccCardManager.java 175 * Requests the profile of the given iccid.
178 * @param iccid The iccid of the profile.
182 public void requestProfile(String cardId, String iccid, @CallbackExecutor Executor executor,
185 getIEuiccCardController().getProfile(mContext.getOpPackageName(), cardId, iccid, local
199 * Disables the profile of the given iccid.
202 * @param iccid The iccid of the profile.
207 public void disableProfile(String cardId, String iccid, boolean refresh,
210 getIEuiccCardController().disableProfile(mContext.getOpPackageName(), cardId, iccid, local
236 getIEuiccCardController().switchToProfile(mContext.getOpPackageName(), cardId, iccid, local
261 getIEuiccCardController().setNickname(mContext.getOpPackageName(), cardId, iccid, local
285 getIEuiccCardController().deleteProfile(mContext.getOpPackageName(), cardId, iccid, local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CarrierIdentifier.java 491 private boolean iccidPrefixMatch(String iccid, String prefix) {
492 if (iccid == null || prefix == null) {
495 return iccid.startsWith(prefix);
524 final String iccid = mPhone.getIccSerialNumber(); local
538 + " iccid: " + Rlog.pii(LOG_TAG, iccid)
545 mccmnc, imsi, iccid, gid1, gid2, plmn, spn, apn,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
EuiccController.java 657 void deleteSubscriptionPrivileged(String iccid, final PendingIntent callbackIntent) {
659 iccid,
710 final String iccid; local
718 iccid = null;
759 String iccid = null; local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CarrierConfigLoader.java 220 final String iccid = getIccIdForPhoneId(phoneId); local
222 restoreConfigFromXml(mPlatformCarrierConfigPackage, iccid);
262 final String iccid = getIccIdForPhoneId(phoneId); local
284 mPlatformCarrierConfigPackage, iccid, config);
339 final String iccid = getIccIdForPhoneId(phoneId); local
341 restoreConfigFromXml(carrierPackageName, iccid);
380 final String iccid = getIccIdForPhoneId(phoneId); local
402 getCarrierPackageForPhoneId(phoneId), iccid, config);
607 * The bundle will be written to a file named after the package name and ICCID, so that it can
614 * @param iccid the ICCID of the subscription for which this bundle was fetched
    [all...]
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 7923 getSubId(), mccmnc, imsi, iccid, gid1, gid2, plmn, spn); local
    [all...]

Completed in 598 milliseconds