Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java148 BluetoothCall mockCall = createRingingCall(); in testHeadsetAnswerCall()
166 BluetoothCall mockCall = createForegroundCall(); in testHeadsetHangupCall()
184 BluetoothCall mockCall = createForegroundCall(); in testHeadsetSendDTMF()
243 ArrayList<BluetoothCall> calls = new ArrayList<>(); in testListCurrentCallsOneCall()
244 BluetoothCall activeCall = createActiveCall(); in testListCurrentCallsOneCall()
262 ArrayList<BluetoothCall> calls = new ArrayList<>(); in testListCurrentCallsSilentRinging()
263 BluetoothCall silentRingingCall = createActiveCall(); in testListCurrentCallsSilentRinging()
288 ArrayList<BluetoothCall> calls = new ArrayList<>(); in testConferenceInProgressCDMA()
289 BluetoothCall parentCall = createActiveCall(); in testConferenceInProgressCDMA()
290 final BluetoothCall confCall1 = getMockCall(); in testConferenceInProgressCDMA()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java98 private BluetoothCall mOldHeldCall = null;
115 public final HashMap<String, BluetoothCall> mBluetoothCallHashMap = new HashMap<>();
118 private final Map<BluetoothCall, Integer> mClccIndexMap = new HashMap<>();
185 public void onStateChanged(BluetoothCall call, int state) { in onStateChanged()
199 for (BluetoothCall otherCall : mCallInfo.getBluetoothCalls()) { in onStateChanged()
210 BluetoothCall activeCall = mCallInfo.getActiveCall(); in onStateChanged()
227 public void onDetailsChanged(BluetoothCall call, Call.Details details) { in onDetailsChanged()
244 public void onParentChanged(BluetoothCall call) { in onParentChanged()
265 public void onChildrenChanged(BluetoothCall call, List<BluetoothCall> children) { in onChildrenChanged()
286 getBluetoothCallsByIds(BluetoothCall.getIds(children))); in onChildrenChanged()
[all …]
DBluetoothCall.java43 public class BluetoothCall { class
55 public BluetoothCall(Call call) { in BluetoothCall() method in BluetoothCall
111 public void conference(BluetoothCall callToConferenceWith) { in conference()
267 return o instanceof BluetoothCall && getCall() == ((BluetoothCall) o).getCall(); in equals()