Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/
DCallInfoTest.java84 BluetoothCall activeCall = getMockCall(); in getActiveCall()
86 ArrayList<BluetoothCall> calls = new ArrayList<>(); in getActiveCall()
96 BluetoothCall heldCall = getMockCall(); in getHeldCall()
98 ArrayList<BluetoothCall> calls = new ArrayList<>(); in getHeldCall()
109 BluetoothCall outgoingCall = getMockCall(); in getOutgoingCall()
111 ArrayList<BluetoothCall> calls = new ArrayList<>(); in getOutgoingCall()
121 BluetoothCall ringingCall = getMockCall(); in getRingingOrSimulatedRingingCall()
123 ArrayList<BluetoothCall> calls = new ArrayList<>(); in getRingingOrSimulatedRingingCall()
140 BluetoothCall activeCall = getMockCall(); in hasOnlyDisconnectedCalls_withConnectedCall()
142 ArrayList<BluetoothCall> calls = new ArrayList<>(); in hasOnlyDisconnectedCalls_withConnectedCall()
[all …]
DBluetoothInCallServiceTest.java172 BluetoothCall mockCall = createRingingCall(UUID.randomUUID()); in testHeadsetAnswerCall()
190 BluetoothCall mockCall = createForegroundCall(UUID.randomUUID()); in testHeadsetHangupCall()
208 BluetoothCall mockCall = createForegroundCall(UUID.randomUUID()); in testHeadsetSendDTMF()
266 ArrayList<BluetoothCall> calls = new ArrayList<>(); in testListCurrentCallsOneCall()
267 BluetoothCall activeCall = createActiveCall(UUID.randomUUID()); in testListCurrentCallsOneCall()
296 BluetoothCall activeCall = createForegroundCall(UUID.randomUUID()); in testBluetoothCallQualityReport()
328 ArrayList<BluetoothCall> calls = new ArrayList<>(); in testListCurrentCallsSilentRinging()
329 BluetoothCall silentRingingCall = createActiveCall(UUID.randomUUID()); in testListCurrentCallsSilentRinging()
361 ArrayList<BluetoothCall> calls = new ArrayList<>(); in testConferenceInProgressCDMA()
362 BluetoothCall parentCall = createActiveCall(UUID.randomUUID()); in testConferenceInProgressCDMA()
[all …]
DBluetoothCallTest.java39 private BluetoothCall mBluetoothCall;
43 mBluetoothCall = new BluetoothCall(null); in setUp()
67 BluetoothCall bluetoothCall = new BluetoothCall(null, uuid); in constructor_withUuid()
153 BluetoothCall bluetoothCall = new BluetoothCall(null); in conference_whenInnerCallIsNull_throwsNPE()
324 BluetoothCall bluetoothCall = new BluetoothCall(null); in equals_withBluetoothCall()
384 List<Integer> result = BluetoothCall.getIds(calls); in getIds_withEmptyList()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java109 private BluetoothCall mOldHeldCall = null;
130 public final HashMap<Integer, BluetoothCall> mBluetoothCallHashMap = new HashMap<>();
132 private final HashMap<Integer, BluetoothCall> mBluetoothConferenceCallInference =
219 public void onStateChanged(BluetoothCall call, int state) { in onStateChanged()
242 for (BluetoothCall otherCall : mCallInfo.getBluetoothCalls()) { in onStateChanged()
253 BluetoothCall activeCall = mCallInfo.getActiveCall(); in onStateChanged()
270 public void onDetailsChanged(BluetoothCall call, Call.Details details) { in onDetailsChanged()
287 public void onParentChanged(BluetoothCall call) { in onParentChanged()
309 public void onChildrenChanged(BluetoothCall call, List<BluetoothCall> children) { in onChildrenChanged()
330 getBluetoothCallsByIds(BluetoothCall.getIds(children))); in onChildrenChanged()
[all …]
DBluetoothCall.java45 public class BluetoothCall { class
65 public BluetoothCall(Call call) { in BluetoothCall() method in BluetoothCall
70 public BluetoothCall(Call call, UUID callId) { in BluetoothCall() method in BluetoothCall
135 public void conference(BluetoothCall callToConferenceWith) { in conference()
276 return o instanceof BluetoothCall && getCall() == ((BluetoothCall) o).getCall(); in equals()