Home
last modified time | relevance | path

Searched refs:PhoneInterfaceManager (Results 1 – 7 of 7) sorted by relevance

/packages/services/Telephony/tests/src/com/android/phone/
DPhoneInterfaceManagerTest.java93 private PhoneInterfaceManager mPhoneInterfaceManager;
133 replaceInstance(PhoneInterfaceManager.class, "sInstance", null, null); in setUp()
138 mPhoneInterfaceManager = spy(PhoneInterfaceManager.init(mPhoneGlobals, mFeatureFlags)); in setUp()
529 replaceInstance(PhoneInterfaceManager.class, "mVendorApiLevel", mPhoneInterfaceManager, in testWithoutTelephonyFeatureAndCompatChanges()
549 Field field = PhoneInterfaceManager.class.getDeclaredField("mApp"); in testGetCurrentPackageNameWithNoKnownPackage()
/packages/services/Telephony/tests/src/com/android/services/telephony/
DTelecomAccountRegistryTest.java55 import com.android.phone.PhoneInterfaceManager;
88 @Mock PhoneInterfaceManager mPhoneInterfaceManager;
104 replaceInstance(PhoneInterfaceManager.class, "sInstance", null, mPhoneInterfaceManager); in setUp()
/packages/services/Telephony/tests/src/com/android/
DTelephonyTestBase.java44 import com.android.phone.PhoneInterfaceManager;
120 mPhoneGlobals.phoneMgr = Mockito.mock(PhoneInterfaceManager.class); in setUp()
/packages/services/Telephony/src/com/android/phone/
DPhoneGlobals.java166 public PhoneInterfaceManager phoneMgr;
637 phoneMgr = PhoneInterfaceManager.init(this, mFeatureFlags); in onCreate()
DTelephonyShellCommand.java1212 PhoneInterfaceManager.addPackageToThermalMitigationAllowlist(packageName, mContext); in handleThermalMitigationCommand()
1216 PhoneInterfaceManager.removePackageFromThermalMitigationAllowlist(packageName, in handleThermalMitigationCommand()
DPhoneInterfaceManager.java299 public class PhoneInterfaceManager extends ITelephony.Stub { class
430 private static PhoneInterfaceManager sInstance;
2479 /* package */ static PhoneInterfaceManager init(PhoneGlobals app, FeatureFlags featureFlags) { in init()
2480 synchronized (PhoneInterfaceManager.class) { in init()
2482 sInstance = new PhoneInterfaceManager(app, featureFlags); in init()
2491 private PhoneInterfaceManager(PhoneGlobals app, FeatureFlags featureFlags) { in PhoneInterfaceManager() method in PhoneInterfaceManager
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java73 import com.android.phone.PhoneInterfaceManager;
1066 PhoneInterfaceManager phoneMgr = PhoneGlobals.getInstance() in isRttCurrentlySupported()