Home
last modified time | relevance | path

Searched refs:clccResponse (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothPhoneServiceTest.java269 verify(mMockBluetoothHeadset).clccResponse(eq(1), eq(0), eq(0), eq(0), eq(false), in testListCurrentCallsOneCall()
271 verify(mMockBluetoothHeadset).clccResponse(0, 0, 0, 0, false, null, 0); in testListCurrentCallsOneCall()
289 verify(mMockBluetoothHeadset, never()).clccResponse(eq(1), eq(0), eq(0), eq(0), eq(false), in testListCurrentCallsSilentRinging()
291 verify(mMockBluetoothHeadset).clccResponse(0, 0, 0, 0, false, null, 0); in testListCurrentCallsSilentRinging()
381 verify(mMockBluetoothHeadset).clccResponse(eq(1), eq(0), eq(CALL_STATE_ACTIVE), eq(0), in testListCurrentCallsCdmaHold()
383 verify(mMockBluetoothHeadset).clccResponse(eq(2), eq(1), eq(CALL_STATE_HELD), eq(0), in testListCurrentCallsCdmaHold()
385 verify(mMockBluetoothHeadset).clccResponse(0, 0, 0, 0, false, null, 0); in testListCurrentCallsCdmaHold()
423 verify(mMockBluetoothHeadset).clccResponse(eq(1), eq(0), eq(CALL_STATE_ACTIVE), eq(0), in testListCurrentCallsCdmaConference()
425 verify(mMockBluetoothHeadset).clccResponse(eq(2), eq(1), eq(CALL_STATE_ACTIVE), eq(0), in testListCurrentCallsCdmaConference()
427 verify(mMockBluetoothHeadset).clccResponse(0, 0, 0, 0, false, null, 0); in testListCurrentCallsCdmaConference()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DBluetoothHeadsetProxy.java39 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, in clccResponse() method in BluetoothHeadsetProxy
42 mBluetoothHeadset.clccResponse(index, direction, status, mode, mpty, number, type); in clccResponse()
DBluetoothPhoneServiceImpl.java662 mBluetoothHeadset.clccResponse( in sendClccForCall()
670 mBluetoothHeadset.clccResponse(0 /* index */, 0, 0, 0, false, null, 0); in sendClccEndMarker()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetStateMachine.java865 mNativeInterface.clccResponse(device, 0, 0, 0, 0, false, "", 0); in processMessage()
1695 mNativeInterface.clccResponse(device, 1, 0, 0, 0, false, phoneNumber, type); in processAtClcc()
1696 mNativeInterface.clccResponse(device, 0, 0, 0, 0, false, "", 0); in processAtClcc()
1701 mNativeInterface.clccResponse(device, 0, 0, 0, 0, false, "", 0); in processAtClcc()
1965 mNativeInterface.clccResponse(mDevice, clcc.mIndex, clcc.mDirection, clcc.mStatus, in processSendClccResponse()
DHeadsetService.java615 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, in clccResponse() method in HeadsetService.BluetoothHeadsetBinder
621 service.clccResponse(index, direction, status, mode, mpty, number, type); in clccResponse()
1544 private void clccResponse(int index, int direction, int status, int mode, boolean mpty, in clccResponse() method in HeadsetService
DHeadsetNativeInterface.java389 public boolean clccResponse(BluetoothDevice device, int index, int dir, int status, int mode, in clccResponse() method in HeadsetNativeInterface