Searched refs:iccId (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionInfo.java115 public SubscriptionInfo(int id, String iccId, int simSlotIndex, CharSequence displayName, argument
119 this.mIccId = iccId;
291 String iccId = source.readString();
304 return new SubscriptionInfo(id, iccId, simSlotIndex, displayName, carrierName,
339 public static String givePrintableIccid(String iccId) { argument
341 if (iccId != null) {
342 if (iccId.length() > 9 && !Build.IS_DEBUGGABLE) {
343 iccIdToPrint = iccId.substring(0, 9) + Rlog.pii(false, iccId.substring(9));
345 iccIdToPrint = iccId;
[all...]
H A DSubscriptionManager.java522 * Get the active SubscriptionInfo associated with the iccId
523 * @param iccId the IccId of SIM card
527 public SubscriptionInfo getActiveSubscriptionInfoForIccIndex(String iccId) { argument
528 if (VDBG) logd("[getActiveSubscriptionInfoForIccIndex]+ iccId=" + iccId);
529 if (iccId == null) {
539 result = iSub.getActiveSubscriptionInfoForIccId(iccId, mContext.getOpPackageName());
698 * @param iccId the IccId of the SIM card
703 public Uri addSubscriptionInfoRecord(String iccId, int slotIndex) { argument
704 if (VDBG) logd("[addSubscriptionInfoRecord]+ iccId
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DISub.aidl47 * Get the active SubscriptionInfo associated with the iccId
48 * @param iccId the IccId of SIM card
52 SubscriptionInfo getActiveSubscriptionInfoForIccId(String iccId, String callingPackage);
98 * @param iccId the IccId of the SIM card
102 int addSubInfoRecord(String iccId, int slotIndex);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DSubscriptionControllerMock.java116 public SubscriptionInfo getActiveSubscriptionInfoForIccId(String iccId, String callingPackage) { argument
144 public int addSubInfoRecord(String iccId, int slotIndex) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java268 String iccId = cursor.getString(cursor.getColumnIndexOrThrow(
295 String iccIdToPrint = SubscriptionInfo.givePrintableIccid(iccId);
307 return new SubscriptionInfo(id, iccId, simSlotIndex, displayName, carrierName,
432 * Get the active SubscriptionInfo associated with the iccId
433 * @param iccId the IccId of SIM card
438 public SubscriptionInfo getActiveSubscriptionInfoForIccId(String iccId, String callingPackage) { argument
440 iccId == null) {
451 if (iccId.equals(si.getIccId())) {
453 logd("[getActiveSubInfoUsingIccId]+ iccId=" + iccId
674 addSubInfoRecord(String iccId, int slotIndex) argument
[all...]
H A DSubscriptionInfoUpdater.java363 String iccId = mIccId[slotId];
364 if (iccId == null) {
370 logd("NOT Querying IccId its already set sIccid[" + slotId + "]=" + iccId);
656 private boolean isNewSim(String iccId, String[] oldIccId) { argument
659 if(iccId.equals(oldIccId[i])) {
H A DPhone.java3053 String iccId = getIccSerialNumber();
3054 if (TextUtils.isEmpty(iccId)) {
3058 setRoamingOverrideHelper(gsmRoamingList, GSM_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
3059 setRoamingOverrideHelper(gsmNonRoamingList, GSM_NON_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
3060 setRoamingOverrideHelper(cdmaRoamingList, CDMA_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
3061 setRoamingOverrideHelper(cdmaNonRoamingList, CDMA_NON_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
3071 private void setRoamingOverrideHelper(List<String> list, String prefix, String iccId) { argument
3074 String key = prefix + iccId;
3147 String iccId = getIccSerialNumber();
3148 if (TextUtils.isEmpty(iccId) || TextUtil
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCard.java709 log("current iccId: " + getIccId());
711 String iccId = getIccId();
712 if (TextUtils.isEmpty(iccId)) {
718 String key = OPERATOR_BRAND_OVERRIDE_PREFIX + iccId;
728 String iccId = getIccId();
729 if (TextUtils.isEmpty(iccId)) {
733 return sp.getString(OPERATOR_BRAND_OVERRIDE_PREFIX + iccId, null);

Completed in 2098 milliseconds