Searched refs:mPhoneFactoryProxy (Results 1 – 6 of 6) sorted by relevance
64 @Mock private DynamicRoutingController.PhoneFactoryProxy mPhoneFactoryProxy; field in DynamicRoutingControllerTest102 when(mPhoneFactoryProxy.getPhone(eq(SLOT_0))).thenReturn(mPhone0); in setUp()103 when(mPhoneFactoryProxy.getPhone(eq(SLOT_1))).thenReturn(mPhone1); in setUp()218 mDrc = new DynamicRoutingController(mPhoneFactoryProxy); in createController()
99 Phone phone = mPhoneFactoryProxy.getPhone(phoneId); in getLastKnownCountryIso()117 private final PhoneFactoryProxy mPhoneFactoryProxy; field in DynamicRoutingController142 mPhoneFactoryProxy = phoneFactoryProxy; in DynamicRoutingController()
398 private PhoneFactoryProxy mPhoneFactoryProxy = new PhoneFactoryProxy() { field in TelephonyConnectionService522 mPhoneFactoryProxy = proxy; in setPhoneFactoryProxy()1462 for (Phone curPhone : mPhoneFactoryProxy.getPhones()) { in handleOnComplete()1556 final Phone defaultPhone = mPhoneFactoryProxy.getDefaultPhone(); in getTelephonyConnection()2128 for (Phone phone : mPhoneFactoryProxy.getPhones()) { in isRadioOn()2154 Queue<Phone> phones = new LinkedList<>(Arrays.asList(mPhoneFactoryProxy.getPhones())); in makeCachedConnectionPhonePair()2983 return Stream.of(mPhoneFactoryProxy.getPhones()) in getPhoneForNormalRoutedEmergencyCall()3005 return Stream.of(mPhoneFactoryProxy.getPhones()) in getPhoneInEmergencyCallbackMode()3564 chosenPhone = mPhoneFactoryProxy.getPhone(phoneId); in getPhoneForAccount()3862 for (Phone phone : mPhoneFactoryProxy.getPhones()) { in getPhoneForEmergencyCall()[all …]
112 @Mock ImsStateCallbackController.PhoneFactoryProxy mPhoneFactoryProxy; field in ImsStateCallbackControllerTest145 when(mPhoneFactoryProxy.getPhone(eq(0))).thenReturn(mPhoneSlot0); in setUp()146 when(mPhoneFactoryProxy.getPhone(eq(1))).thenReturn(mPhoneSlot1); in setUp()935 "mPhoneFactoryProxy", mImsStateCallbackController, mPhoneFactoryProxy); in createController()
235 @Mock TelephonyConnectionService.PhoneFactoryProxy mPhoneFactoryProxy; field in TelephonyConnectionServiceTest284 mTestConnectionService.setPhoneFactoryProxy(mPhoneFactoryProxy); in setUp()1316 for (Phone phone : mPhoneFactoryProxy.getPhones()) { in testCreateOutgoingEmerge_exitingApm_disconnected()3867 when(mPhoneFactoryProxy.getPhones()).thenReturn(new Phone[] {mockPhone}); in testGetPhoneForNormalRoutedEmergencyCallWhenCarrierDoesntSupport()3888 when(mPhoneFactoryProxy.getPhones()).thenReturn(new Phone[] {mockPhone}); in testGetPhoneForNormalRoutedEmergencyCallWhenCarrierDoesSupport()3920 when(mPhoneFactoryProxy.getPhones()).thenReturn(new Phone[] {mockLimitedServicePhone, in testGetPhoneForNormalRoutedEmergencyCallWhenCarrierDoesSupportMultiSim()3937 when(mPhoneFactoryProxy.getPhones()).thenReturn( in testGetPhoneInEmergencyCallbackModeMultiSim()4117 when(mPhoneFactoryProxy.getPhone(eq(0))).thenReturn(mPhone0); in setupForCallTest()4121 when(mPhoneFactoryProxy.getPhone(eq(1))).thenReturn(mPhone1); in setupForCallTest()4232 doReturn(phone).when(mPhoneFactoryProxy).getPhone(eq(phoneId)); in setupHandleToPhoneMap()[all …]
1032 Phone phone = mPhoneFactoryProxy.getPhone(slotId); in getSubId()1128 private PhoneFactoryProxy mPhoneFactoryProxy = new PhoneFactoryProxy() { field in ImsStateCallbackController