Lines Matching refs:slotId
3415 int slotId = getSlotIndex(subId); in getImsProvisioningInt() local
3416 if (slotId <= SubscriptionManager.INVALID_SIM_SLOT_INDEX) { in getImsProvisioningInt()
3421 return ImsManager.getInstance(mApp, slotId).getConfigInterface().getConfigInt(key); in getImsProvisioningInt()
3440 int slotId = getSlotIndex(subId); in getImsProvisioningString() local
3441 if (slotId <= SubscriptionManager.INVALID_SIM_SLOT_INDEX) { in getImsProvisioningString()
3446 return ImsManager.getInstance(mApp, slotId).getConfigInterface().getConfigString(key); in getImsProvisioningString()
3466 int slotId = getSlotIndex(subId); in setImsProvisioningInt() local
3467 if (slotId <= SubscriptionManager.INVALID_SIM_SLOT_INDEX) { in setImsProvisioningInt()
3472 return ImsManager.getInstance(mApp, slotId).getConfigInterface().setConfig(key, value); in setImsProvisioningInt()
3492 int slotId = getSlotIndex(subId); in setImsProvisioningString() local
3493 if (slotId <= SubscriptionManager.INVALID_SIM_SLOT_INDEX) { in setImsProvisioningString()
3498 return ImsManager.getInstance(mApp, slotId).getConfigInterface().setConfig(key, value); in setImsProvisioningString()
3509 int slotId = SubscriptionManager.getSlotIndex(subId); in getSlotIndexOrException() local
3510 if (!SubscriptionManager.isValidSlotIndex(slotId)) { in getSlotIndexOrException()
3513 return slotId; in getSlotIndexOrException()
3517 int slotId = SubscriptionManager.getSlotIndex(subId); in getSlotIndex() local
3518 if (!SubscriptionManager.isValidSlotIndex(slotId)) { in getSlotIndex()
3521 return slotId; in getSlotIndex()
4163 public void enableIms(int slotId) { in enableIms() argument
4173 resolver.enableIms(slotId); in enableIms()
4183 public void disableIms(int slotId) { in disableIms() argument
4193 resolver.disableIms(slotId); in disableIms()
4204 public IImsMmTelFeature getMmTelFeatureAndListen(int slotId, in getMmTelFeatureAndListen() argument
4215 return resolver.getMmTelFeatureAndListen(slotId, callback); in getMmTelFeatureAndListen()
4227 public IImsRcsFeature getRcsFeatureAndListen(int slotId, IImsServiceFeatureCallback callback) { in getRcsFeatureAndListen() argument
4237 return resolver.getRcsFeatureAndListen(slotId, callback); in getRcsFeatureAndListen()
4247 public IImsRegistration getImsRegistration(int slotId, int feature) throws RemoteException { in getImsRegistration() argument
4257 return resolver.getImsRegistration(slotId, feature); in getImsRegistration()
4267 public IImsConfig getImsConfig(int slotId, int feature) throws RemoteException { in getImsConfig() argument
4277 return resolver.getImsConfig(slotId, feature); in getImsConfig()
4294 public boolean setImsService(int slotId, boolean isCarrierImsService, String packageName) { in setImsService() argument
4295 int[] subIds = SubscriptionManager.getSubId(slotId); in setImsService()
4307 return resolver.overrideImsServiceConfiguration(slotId, isCarrierImsService, in setImsService()
4322 public String getImsService(int slotId, boolean isCarrierImsService) { in getImsService() argument
4323 int[] subIds = SubscriptionManager.getSubId(slotId); in getImsService()
4335 return resolver.getImsServiceConfiguration(slotId, isCarrierImsService); in getImsService()