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.java68 BluetoothCall bluetoothCall = new BluetoothCall(null, uuid); in constructor_withUuid() local
70 assertThat(bluetoothCall.getTbsCallId()).isEqualTo(uuid); in constructor_withUuid()
154 BluetoothCall bluetoothCall = new BluetoothCall(null); in conference_whenInnerCallIsNull_throwsNPE() local
156 assertThrows(NullPointerException.class, () -> mBluetoothCall.conference(bluetoothCall)); in conference_whenInnerCallIsNull_throwsNPE()
325 BluetoothCall bluetoothCall = new BluetoothCall(null); in equals_withBluetoothCall() local
327 assertThat(mBluetoothCall).isEqualTo(bluetoothCall); in equals_withBluetoothCall()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java768 BluetoothCall bluetoothCall = getBluetoothCallById(System.identityHashCode(call)); in onCallRemoved() local
769 if (bluetoothCall == null) { in onCallRemoved()
774 HeadsetService.getHeadsetService(), bluetoothCall, true /* forceRemoveCallback */); in onCallRemoved() local
880 for (BluetoothCall bluetoothCall : mBluetoothCallHashMap.values()) { in sendListOfCalls()
881 if (bluetoothCall.getHandle() == null) { in sendListOfCalls()
882 Log.w(TAG, "call id: " + bluetoothCall.getId() + " handle is null"); in sendListOfCalls()
887 bluetoothCall.getHandle().toString(), in sendListOfCalls()
895 + bluetoothCall.getId()); in sendListOfCalls()
896 bluetoothCall.mClccIndex = inferredCall.mClccIndex; in sendListOfCalls()
1073 for (BluetoothCall bluetoothCall : mBluetoothCallHashMap.values()) { in getNextAvailableClccIndex()
[all …]