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.java497 * Get the active SubscriptionInfo associated with the iccId
498 * @param iccId the IccId of SIM card
502 public SubscriptionInfo getActiveSubscriptionInfoForIccIndex(String iccId) { argument
503 if (VDBG) logd("[getActiveSubscriptionInfoForIccIndex]+ iccId=" + iccId);
504 if (iccId == null) {
514 result = iSub.getActiveSubscriptionInfoForIccId(iccId, mContext.getOpPackageName());
673 * @param iccId the IccId of the SIM card
678 public Uri addSubscriptionInfoRecord(String iccId, int slotId) { argument
679 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 slotId);
/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 slotId) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java267 String iccId = cursor.getString(cursor.getColumnIndexOrThrow(
294 String iccIdToPrint = SubscriptionInfo.givePrintableIccid(iccId);
306 return new SubscriptionInfo(id, iccId, simSlotIndex, displayName, carrierName,
431 * Get the active SubscriptionInfo associated with the iccId
432 * @param iccId the IccId of SIM card
437 public SubscriptionInfo getActiveSubscriptionInfoForIccId(String iccId, String callingPackage) { argument
449 if (si.getIccId() == iccId) {
451 logd("[getActiveSubInfoUsingIccId]+ iccId=" + iccId + " subInfo=" + si);
457 logd("[getActiveSubInfoUsingIccId]+ iccId
672 addSubInfoRecord(String iccId, int slotId) argument
[all...]
H A DSubscriptionInfoUpdater.java376 String iccId = mIccId[slotId];
377 if (iccId == null) {
383 logd("NOT Querying IccId its already set sIccid[" + slotId + "]=" + iccId);
664 private boolean isNewSim(String iccId, String[] oldIccId) { argument
667 if(iccId.equals(oldIccId[i])) {
H A DPhone.java2916 String iccId = getIccSerialNumber();
2917 if (TextUtils.isEmpty(iccId)) {
2921 setRoamingOverrideHelper(gsmRoamingList, GSM_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
2922 setRoamingOverrideHelper(gsmNonRoamingList, GSM_NON_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
2923 setRoamingOverrideHelper(cdmaRoamingList, CDMA_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
2924 setRoamingOverrideHelper(cdmaNonRoamingList, CDMA_NON_ROAMING_LIST_OVERRIDE_PREFIX, iccId);
2934 private void setRoamingOverrideHelper(List<String> list, String prefix, String iccId) { argument
2937 String key = prefix + iccId;
3010 String iccId = getIccSerialNumber();
3011 if (TextUtils.isEmpty(iccId) || TextUtil
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCard.java711 log("current iccId: " + getIccId());
713 String iccId = getIccId();
714 if (TextUtils.isEmpty(iccId)) {
720 String key = OPERATOR_BRAND_OVERRIDE_PREFIX + iccId;
730 String iccId = getIccId();
731 if (TextUtils.isEmpty(iccId)) {
735 return sp.getString(OPERATOR_BRAND_OVERRIDE_PREFIX + iccId, null);

Completed in 151 milliseconds