Searched defs:slotIdx (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java514 * Get the active SubscriptionInfo associated with the slotIdx
515 * @param slotIdx the slot which the subscription is inserted
518 public SubscriptionInfo getActiveSubscriptionInfoForSimSlotIndex(int slotIdx) { argument
519 if (VDBG) logd("[getActiveSubscriptionInfoForSimSlotIndex]+ slotIdx=" + slotIdx);
520 if (!isValidSlotId(slotIdx)) {
521 logd("[getActiveSubscriptionInfoForSimSlotIndex]- invalid slotIdx");
530 result = iSub.getActiveSubscriptionInfoForSimSlotIndex(slotIdx,
1186 * @param slotIdx
1200 public static int getSimStateForSlotIdx(int slotIdx) { argument
[all...]
H A DTelephonyManager.java1702 int slotIdx = getDefaultSim();
1703 // slotIdx may be invalid due to sim being absent. In that case query all slots to get
1705 if (slotIdx < 0) {
1711 Rlog.d(TAG, "getSimState: default sim:" + slotIdx + ", sim state for " +
1712 "slotIdx=" + i + " is " + simState + ", return state as unknown");
1716 Rlog.d(TAG, "getSimState: default sim:" + slotIdx + ", all SIMs absent, return " +
1720 return getSimState(slotIdx);
1726 * @param slotIdx
1739 public int getSimState(int slotIdx) { argument
1740 int simState = SubscriptionManager.getSimStateForSlotIdx(slotIdx);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java463 * Get the active SubscriptionInfo associated with the slotIdx
464 * @param slotIdx the slot which the subscription is inserted
469 public SubscriptionInfo getActiveSubscriptionInfoForSimSlotIndex(int slotIdx, argument
482 if (si.getSimSlotIndex() == slotIdx) {
484 logd("[getActiveSubscriptionInfoForSimSlotIndex]+ slotIdx=" + slotIdx
491 logd("[getActiveSubscriptionInfoForSimSlotIndex]+ slotIdx=" + slotIdx
1134 public int[] getSubId(int slotIdx) { argument
1135 if (VDBG) printStackTrace("[getSubId]+ slotIdx
1232 getDummySubIds(int slotIdx) argument
1669 getSimStateForSlotIdx(int slotIdx) argument
[all...]

Completed in 103 milliseconds