HomeSort by relevance Sort by last modified time
    Searched refs:slotIdx (Results 1 - 6 of 6) sorted by null

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
SubscriptionControllerMock.java 120 public SubscriptionInfo getActiveSubscriptionInfoForSimSlotIndex(int slotIdx, String cp){
181 private boolean isInvalidSlotId(int slotIdx) {
182 if (slotIdx < 0 || slotIdx >= mSlotIdxToSubId.length) return true;
187 public int[] getSubId(int slotIdx) {
188 if (isInvalidSlotId(slotIdx)) {
191 return mSlotIdxToSubId[slotIdx];
193 public void setSlotSubId(int slotIdx, int subId) {
194 if (isInvalidSlotId(slotIdx)) {
195 throw new RuntimeException("invalid slot specified" + slotIdx);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISub.aidl 55 * Get the active SubscriptionInfo associated with the slotIdx
56 * @param slotIdx the slot which the subscription is inserted
60 SubscriptionInfo getActiveSubscriptionInfoForSimSlotIndex(int slotIdx, String callingPackage);
194 int getSimStateForSlotIdx(int slotIdx);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SubscriptionController.java 473 * Get the active SubscriptionInfo associated with the slotIdx
474 * @param slotIdx the slot which the subscription is inserted
479 public SubscriptionInfo getActiveSubscriptionInfoForSimSlotIndex(int slotIdx,
492 if (si.getSimSlotIndex() == slotIdx) {
494 logd("[getActiveSubscriptionInfoForSimSlotIndex]+ slotIdx=" + slotIdx
501 logd("[getActiveSubscriptionInfoForSimSlotIndex]+ slotIdx=" + slotIdx
    [all...]
  /frameworks/base/telephony/java/android/telephony/
SubscriptionManager.java 537 * Get the active SubscriptionInfo associated with the slotIdx
538 * @param slotIdx the slot which the subscription is inserted
541 public SubscriptionInfo getActiveSubscriptionInfoForSimSlotIndex(int slotIdx) {
542 if (VDBG) logd("[getActiveSubscriptionInfoForSimSlotIndex]+ slotIdx=" + slotIdx);
543 if (!isValidSlotId(slotIdx)) {
544 logd("[getActiveSubscriptionInfoForSimSlotIndex]- invalid slotIdx");
553 result = iSub.getActiveSubscriptionInfoForSimSlotIndex(slotIdx,
    [all...]
TelephonyManager.java     [all...]
  /external/robolectric/v3/runtime/
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 87 milliseconds