Loading src/java/com/android/internal/telephony/DefaultPhoneNotifier.java +2 −2 Original line number Diff line number Diff line Loading @@ -241,8 +241,8 @@ public class DefaultPhoneNotifier implements PhoneNotifier { @Override public void notifyPhysicalChannelConfig(Phone sender, List<PhysicalChannelConfig> configs) { int subId = sender.getSubId(); mTelephonyRegistryMgr.notifyPhysicalChannelConfigForSubscriber(subId, configs); mTelephonyRegistryMgr.notifyPhysicalChannelConfigForSubscriber( sender.getPhoneId(), sender.getSubId(), configs); } @Override Loading tests/telephonytests/src/com/android/internal/telephony/TelephonyRegistryTest.java +1 −1 Original line number Diff line number Diff line Loading @@ -468,7 +468,7 @@ public class TelephonyRegistryTest extends TelephonyTest { List<PhysicalChannelConfig> configs = new ArrayList<>(1); configs.add(config); mTelephonyRegistry.notifyPhysicalChannelConfigForSubscriber(subId, configs); mTelephonyRegistry.notifyPhysicalChannelConfigForSubscriber(0, subId, configs); mTelephonyRegistry.listenWithEventList(subId, mContext.getOpPackageName(), mContext.getAttributionTag(), mTelephonyCallback.callback, events, true); processAllMessages(); Loading Loading
src/java/com/android/internal/telephony/DefaultPhoneNotifier.java +2 −2 Original line number Diff line number Diff line Loading @@ -241,8 +241,8 @@ public class DefaultPhoneNotifier implements PhoneNotifier { @Override public void notifyPhysicalChannelConfig(Phone sender, List<PhysicalChannelConfig> configs) { int subId = sender.getSubId(); mTelephonyRegistryMgr.notifyPhysicalChannelConfigForSubscriber(subId, configs); mTelephonyRegistryMgr.notifyPhysicalChannelConfigForSubscriber( sender.getPhoneId(), sender.getSubId(), configs); } @Override Loading
tests/telephonytests/src/com/android/internal/telephony/TelephonyRegistryTest.java +1 −1 Original line number Diff line number Diff line Loading @@ -468,7 +468,7 @@ public class TelephonyRegistryTest extends TelephonyTest { List<PhysicalChannelConfig> configs = new ArrayList<>(1); configs.add(config); mTelephonyRegistry.notifyPhysicalChannelConfigForSubscriber(subId, configs); mTelephonyRegistry.notifyPhysicalChannelConfigForSubscriber(0, subId, configs); mTelephonyRegistry.listenWithEventList(subId, mContext.getOpPackageName(), mContext.getAttributionTag(), mTelephonyCallback.callback, events, true); processAllMessages(); Loading