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.java45 private final PhoneAccount mPhoneAccount; field in HfpClientDeviceBlock
59 mPhoneAccount = HfpClientConnectionService.createAccount(mContext, device); in HfpClientDeviceBlock()
63 mTelecomManager.registerPhoneAccount(mPhoneAccount); in HfpClientDeviceBlock()
64 mTelecomManager.enablePhoneAccount(mPhoneAccount.getAccountHandle(), true); in HfpClientDeviceBlock()
65 mTelecomManager.setUserSelectedOutgoingPhoneAccount(mPhoneAccount.getAccountHandle()); in HfpClientDeviceBlock()
124 mConference = new HfpClientConference(mPhoneAccount.getAccountHandle(), mDevice, in onConference()
142 mTelecomManager.unregisterPhoneAccount(mPhoneAccount.getAccountHandle()); in cleanup()
182 mTelecomManager.addNewUnknownCall(mPhoneAccount.getAccountHandle(), b); in handleCall()
188 mTelecomManager.addNewIncomingCall(mPhoneAccount.getAccountHandle(), b); in handleCall()
293 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()