Home
last modified time | relevance | path

Searched refs:callStateChanged (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/
DTbsService.java311 public void callStateChanged( in callStateChanged() method in TbsService.TbsServerBinder
315 service.callStateChanged(ccid, callId.getUuid(), state); in callStateChanged()
404 void callStateChanged(int ccid, UUID callId, int state) { in callStateChanged() method in TbsService
407 mTbsGeneric.callStateChanged(ccid, callId, state); in callStateChanged()
DTbsGeneric.java628 public synchronized void callStateChanged(int ccid, UUID callId, int state) { in callStateChanged() method in TbsGeneric
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/tbs/
DTbsGenericTest.java279 mTbsGeneric.callStateChanged(ccid, callUuid, BluetoothLeCall.STATE_ACTIVE); in testCallStateChanged()
381 mTbsGeneric.callStateChanged(ccid, callUuid, BluetoothLeCall.STATE_ACTIVE); in testCallAccept()
493 mTbsGeneric.callStateChanged(ccid, callUuid, BluetoothLeCall.STATE_LOCALLY_HELD); in testCallHold()
549 mTbsGeneric.callStateChanged(ccid, callUuid, BluetoothLeCall.STATE_ACTIVE); in testCallRetrieve()
669 mTbsGeneric.callStateChanged(ccid, callUuids.get(0), BluetoothLeCall.STATE_ACTIVE); in testCallJoin()
/packages/modules/Bluetooth/android/app/aidl/android/bluetooth/
DIBluetoothLeCallControl.aidl41 …void callStateChanged(in int ccid, in ParcelUuid callId, in int state, in AttributionSource attrib… in callStateChanged() method
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothLeCallControl.java669 service.callStateChanged(mCcid, new ParcelUuid(callId), state, mAttributionSource); in onCallStateChanged()