/frameworks/base/telephony/java/android/telephony/ |
SubInfoRecord.java | 39 public int slotId; 82 this.slotId = SubscriptionManager.INVALID_SLOT_ID; 94 public SubInfoRecord(long subId, String iccId, int slotId, String displayName, int nameSource, 99 this.slotId = slotId; 116 int slotId = source.readInt(); 128 return new SubInfoRecord(subId, iccId, slotId, displayName, nameSource, color, number, 142 dest.writeInt(slotId); 161 return "{mSubId=" + subId + ", mIccId=" + iccId + " mSlotId=" + slotId
|
SubscriptionManager.java | 321 * Get the SubInfoRecord according to slotId 322 * @param slotId the slot which the SIM is inserted 326 public static List<SubInfoRecord> getSubInfoUsingSlotId(int slotId) { 328 if (!isValidSlotId(slotId)) { 329 logd("[getSubInfoUsingSlotId]- invalid slotId"); 338 result = iSub.getSubInfoUsingSlotId(slotId); 445 * @param slotId the slot which the SIM is inserted 449 public static Uri addSubInfoRecord(String iccId, int slotId) { 450 if (VDBG) logd("[addSubInfoRecord]+ iccId:" + iccId + " slotId:" + slotId); [all...] |
TelephonyManager.java | 602 * @param slotId of which deviceID is returned 605 public String getDeviceId(int slotId) { 606 long[] subId = SubscriptionManager.getSubId(slotId); 633 * @param slotId of which deviceID is returned 636 public String getImei(int slotId) { 637 long[] subId = SubscriptionManager.getSubId(slotId); [all...] |
PhoneNumberUtils.java | [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ISub.aidl | 38 * Get the SubInfoRecord according to slotId 39 * @param slotId the slot which the SIM is inserted 42 List<SubInfoRecord> getSubInfoUsingSlotId(int slotId); 71 * @param slotId the slot which the SIM is inserted 74 int addSubInfoRecord(String iccId, int slotId); 127 long[] getSubId(int slotId);
|
ITelephony.aidl | 456 * @param slotId user preferred slotId. 459 boolean hasIccCardUsingSlotId(long slotId);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SubInfoRecordUpdater.java | 98 private static int encodeEventId(int event, int slotId) { 99 return event << (slotId * EVENT_OFFSET); 107 int slotId; 111 slotId = intent.getIntExtra(PhoneConstants.SLOT_KEY, 113 logd("slotId: " + slotId + " simStatus: " + simStatus); 114 if (slotId == SubscriptionManager.INVALID_SLOT_ID) { 119 if (sIccId[slotId] != null && sIccId[slotId].equals(ICCID_STRING_FOR_NO_SIM)) { 120 logd("SIM" + (slotId + 1) + " hot plug in") [all...] |
Subscription.java | 42 public int slotId; // Slot id 74 + "slotId = " + slotId 87 if ((slotId == sub.slotId) && (m3gppIndex == sub.m3gppIndex) 112 // Not checking the subId, subStatus and slotId, which are related to the 145 slotId = SUBSCRIPTION_INDEX_INVALID; 163 slotId = from.slotId;
|
SubscriptionController.java | 57 * Any setters which take subId, slotId or phoneId as a parameter will throw an exception if the 258 info.slotId = cursor.getInt(cursor.getColumnIndexOrThrow( 283 logd("[getSubInfoRecord] SubId:" + info.subId + " iccid:" + info.iccId + " slotId:" + 284 info.slotId + " displayName:" + info.displayName + " color:" + info.color + 411 * Get the SubInfoRecord according to slotId 412 * @param slotId the slot which the SIM is inserted 416 public List<SubInfoRecord> getSubInfoUsingSlotId(int slotId) { 417 return getSubInfoUsingSlotIdWithCheck(slotId, true); 513 * @param slotId the slot which the SIM is inserted 517 public int addSubInfoRecord(String iccId, int slotId) { [all...] |
CommandsInterface.java | [all...] |
BaseCommands.java | 821 public void setUiccSubscription(int slotId, int appIndex, int subId, int subStatus,
|
RIL.java | 691 public void setUiccSubscription(int slotId, int appIndex, int subId, 697 + " slot: " + slotId + " appIndex: " + appIndex 700 rr.mParcel.writeInt(slotId); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
UiccController.java | 150 public UiccCard getUiccCard(int slotId) { 152 if (isValidCardIndex(slotId)) { 153 return mUiccCards[slotId]; 188 public IccRecords getIccRecords(int slotId, int family) { 190 UiccCardApplication app = getUiccCardApplication(slotId, family); 214 public IccFileHandler getIccFileHandler(int slotId, int family) { 216 UiccCardApplication app = getUiccCardApplication(slotId, family); 310 public UiccCardApplication getUiccCardApplication(int slotId, int family) { 312 if (isValidCardIndex(slotId)) { 313 UiccCard c = mUiccCards[slotId]; [all...] |
IccCardProxy.java | 261 int slotId = mCardIndex; 263 log("operator = " + operator + " slotId = " + slotId); 267 setSystemProperty(PROPERTY_ICC_OPERATOR_NUMERIC, slotId, operator); 270 setSystemProperty(PROPERTY_ICC_OPERATOR_ISO_COUNTRY, slotId, 276 long[] subId = SubscriptionController.getInstance().getSubId(slotId); 316 int slotId = mCardIndex; 320 setSystemProperty(PROPERTY_ICC_OPERATOR_ALPHA, slotId, [all...] |
UiccCard.java | 106 public UiccCard(Context c, CommandsInterface ci, IccCardStatus ics, int slotId) { 108 mSlotId = slotId;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
RilMessageDecoder.java | 58 int slotId) { 67 if (slotId < mSimCount) { 68 if (null == mInstance[slotId]) { 69 mInstance[slotId] = new RilMessageDecoder(caller, fh); 72 CatLog.d("RilMessageDecoder", "invaild slot id: " + slotId); 76 return mInstance[slotId];
|
CatService.java | 123 Context context, IccFileHandler fh, UiccCard ic, int slotId) { 131 mSlotId = slotId; 132 mHandlerThread = new HandlerThread("Cat Telephony service" + slotId); 136 mMsgDecoder = RilMessageDecoder.getInstance(this, fh, slotId); 155 CatLog.d(this, "registerForReady slotid: " + mSlotId + "instance : " + this); 165 CatLog.d(this, "Running CAT service on Slotid: " + mSlotId + 175 * @param slotId to know the index of card 179 Context context, UiccCard ic, int slotId) { 201 sInstance = new CatService(ci, ca, ir, context, fh, ic, slotId); 453 CatLog.d(this, "Sending CmdMsg: " + cmdMsg+ " on slotid:" + mSlotId) [all...] |
/packages/services/Telephony/src/com/android/services/telephony/ |
TelecomAccountRegistry.java | 95 int slotId = SubscriptionManager.INVALID_SLOT_ID; 118 // We can only get the real slotId from the SubInfoRecord, we can't calculate the 119 // slotId from the subId or the phoneId in all instances. 123 slotId = record.slotId; 127 if (SubscriptionManager.isValidSlotId(slotId)) { 128 slotIdString = Integer.toString(slotId); 157 .setIconResId(getPhoneAccountIcon(slotId))
|
/packages/apps/Settings/src/com/android/settings/sim/ |
SimSettings.java | 179 * finds a record with slotId. 182 private SubInfoRecord findRecordBySlotId(final int slotId) { 188 if (sir.slotId == slotId) { 202 simPref.setSelectedItem(sir.slotId + 1); 211 simPref.setSelectedItem(sir.slotId); 220 simPref.setSelectedItem(sir.slotId + 1); 298 public SimPreference(Context context, SubInfoRecord subInfoRecord, int slotId) { 302 mSlotId = slotId;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CDMALTEPhone.java | 330 log("SUBSCRIPTION ACTIVATED : slotId : " + mSubscriptionData.slotId
|
/external/srec/tools/grxmlcompile/ |
grxmlcompile.cpp | 464 int slotId = arc.olabel; 482 arc2.olabel = slotId; [all...] |
/packages/services/Telephony/src/com/android/phone/ |
PhoneInterfaceManager.java | [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GSMPhone.java | 271 log("SUBSCRIPTION ACTIVATED : slotId : " + mSubscriptionData.slotId [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
jdimodel.jar | |