Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothCallTest.java67 BluetoothCall bluetoothCall = new BluetoothCall(null, uuid); in constructor_withUuid() local
69 assertThat(bluetoothCall.getTbsCallId()).isEqualTo(uuid); in constructor_withUuid()
153 BluetoothCall bluetoothCall = new BluetoothCall(null); in conference_whenInnerCallIsNull_throwsNPE() local
155 assertThrows(NullPointerException.class, () -> mBluetoothCall.conference(bluetoothCall)); in conference_whenInnerCallIsNull_throwsNPE()
324 BluetoothCall bluetoothCall = new BluetoothCall(null); in equals_withBluetoothCall() local
326 assertThat(mBluetoothCall).isEqualTo(bluetoothCall); in equals_withBluetoothCall()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java701 BluetoothCall bluetoothCall = getBluetoothCallById(System.identityHashCode(call)); in onCallRemoved() local
702 if (bluetoothCall == null) { in onCallRemoved()
706 onCallRemoved(bluetoothCall, true /* forceRemoveCallback */); in onCallRemoved()
813 for (BluetoothCall bluetoothCall : mBluetoothCallHashMap.values()) { in sendListOfCalls()
814 if (bluetoothCall.getHandle() == null) { in sendListOfCalls()
815 Log.w(TAG, "call id: " + bluetoothCall.getId() + " handle is null"); in sendListOfCalls()
824 bluetoothCall.getHandle().toString(), in sendListOfCalls()
832 + bluetoothCall.getId()); in sendListOfCalls()
833 bluetoothCall.mClccIndex = inferredCall.mClccIndex; in sendListOfCalls()
1031 for (BluetoothCall bluetoothCall : mBluetoothCallHashMap.values()) { in getNextAvailableClccIndex()
[all …]