Home
last modified time | relevance | path

Searched refs:mPhoneAccount (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
DHfpClientDeviceBlock.java49 private final PhoneAccount mPhoneAccount; field in HfpClientDeviceBlock
63 mPhoneAccount = HfpClientConnectionService.createAccount(mContext, device); in HfpClientDeviceBlock()
67 mTelecomManager.registerPhoneAccount(mPhoneAccount); in HfpClientDeviceBlock()
68 mTelecomManager.enablePhoneAccount(mPhoneAccount.getAccountHandle(), true); in HfpClientDeviceBlock()
69 mTelecomManager.setUserSelectedOutgoingPhoneAccount(mPhoneAccount.getAccountHandle()); in HfpClientDeviceBlock()
146 mConference = new HfpClientConference(mPhoneAccount.getAccountHandle(), mDevice, in onConference()
165 mTelecomManager.unregisterPhoneAccount(mPhoneAccount.getAccountHandle()); in cleanup()
205 mTelecomManager.addNewUnknownCall(mPhoneAccount.getAccountHandle(), b); in handleCall()
211 mTelecomManager.addNewIncomingCall(mPhoneAccount.getAccountHandle(), b); in handleCall()
320 mConference = new HfpClientConference(mPhoneAccount.getAccountHandle(), mDevice, in updateConferenceableConnections()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DNewOutgoingCallIntentBroadcasterTest.java91 @Mock private PhoneAccount mPhoneAccount; field in NewOutgoingCallIntentBroadcasterTest
111 any(PhoneAccountHandle.class))).thenReturn(mPhoneAccount); in setUp()
112 when(mPhoneAccount.isSelfManaged()).thenReturn(true); in setUp()