Lines Matching refs:phoneId

1344                     int phoneId = request.phone.getPhoneId();  in handleMessage()  local
1347 mPhoneConfigurationManager.addToPhoneStatusCache(phoneId, msg.arg1 == 1); in handleMessage()
2086 private void shutdownRadioUsingPhoneId(int phoneId) { in shutdownRadioUsingPhoneId() argument
2087 Phone phone = PhoneFactory.getPhone(phoneId); in shutdownRadioUsingPhoneId()
2308 public String getNetworkCountryIsoForPhone(int phoneId) { in getNetworkCountryIsoForPhone() argument
2313 if (phoneId == SubscriptionManager.INVALID_PHONE_INDEX) { in getNetworkCountryIsoForPhone()
2315 phoneId = SubscriptionManager.DEFAULT_PHONE_INDEX; in getNetworkCountryIsoForPhone()
2317 final int subId = mSubscriptionController.getSubIdUsingPhoneId(phoneId); in getNetworkCountryIsoForPhone()
2318 Phone phone = PhoneFactory.getPhone(phoneId); in getNetworkCountryIsoForPhone()
4440 int phoneId = UiccController.getInstance().getPhoneIdFromSlotId(slotIndex); in getPhoneFromSlotIdOrThrowException() local
4441 if (phoneId == -1) { in getPhoneFromSlotIdOrThrowException()
4445 return PhoneFactory.getPhone(phoneId); in getPhoneFromSlotIdOrThrowException()
5694 int phoneId = mSubscriptionController.getPhoneId(subId); in setUserDataEnabled() local
5695 if (DBG) log("setUserDataEnabled: subId=" + subId + " phoneId=" + phoneId); in setUserDataEnabled()
5696 Phone phone = PhoneFactory.getPhone(phoneId); in setUserDataEnabled()
5773 int phoneId = mSubscriptionController.getPhoneId(subId); in isUserDataEnabled() local
5774 if (DBG) log("isUserDataEnabled: subId=" + subId + " phoneId=" + phoneId); in isUserDataEnabled()
5775 Phone phone = PhoneFactory.getPhone(phoneId); in isUserDataEnabled()
5802 int phoneId = mSubscriptionController.getPhoneId(subId); in isDataEnabled() local
5803 if (DBG) log("isDataEnabled: subId=" + subId + " phoneId=" + phoneId); in isDataEnabled()
5804 Phone phone = PhoneFactory.getPhone(phoneId); in isDataEnabled()
5911 int phoneId = SubscriptionManager.getPhoneId(subId); in checkCarrierPrivilegesForPackage() local
5912 UiccCard card = UiccController.getInstance().getUiccCard(phoneId); in checkCarrierPrivilegesForPackage()
5919 getPhone(phoneId), pkgName); in checkCarrierPrivilegesForPackage()
5946 public List<String> getCarrierPackageNamesForIntentAndPhone(Intent intent, int phoneId) { in getCarrierPackageNamesForIntentAndPhone() argument
5947 if (!SubscriptionManager.isValidPhoneId(phoneId)) { in getCarrierPackageNamesForIntentAndPhone()
5948 loge("phoneId " + phoneId + " is not valid."); in getCarrierPackageNamesForIntentAndPhone()
5951 UiccCard card = UiccController.getInstance().getUiccCard(phoneId); in getCarrierPackageNamesForIntentAndPhone()
5960 public List<String> getPackagesWithCarrierPrivileges(int phoneId) { in getPackagesWithCarrierPrivileges() argument
5964 UiccCard card = UiccController.getInstance().getUiccCard(phoneId); in getPackagesWithCarrierPrivileges()
6327 public int getRadioAccessFamily(int phoneId, String callingPackage) { in getRadioAccessFamily() argument
6328 Phone phone = PhoneFactory.getPhone(phoneId); in getRadioAccessFamily()
6338 raf = ProxyController.getInstance().getRadioAccessFamily(phoneId); in getRadioAccessFamily()
7718 int phoneId = mSubscriptionController.getPhoneId(subId); in getDefaultNetworkType() local
7719 if (phoneId >= 0 && phoneId < list.size() && list.get(phoneId) != null) { in getDefaultNetworkType()
7720 return list.get(phoneId); in getDefaultNetworkType()