Home
last modified time | relevance | path

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

/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DBluetoothHeadsetFragment.java64 BluetoothHeadsetClientCall mOutgoingCall; field in BluetoothHeadsetFragment
303 if (mOutgoingCall != null) { in startCall()
304 Log.w(TAG, "Potential on-going call or a stale call " + mOutgoingCall); in startCall()
308 mOutgoingCall = mHfpClientProfile.dial(mPickedDevice, number); in startCall()
309 if (mOutgoingCall == null) { in startCall()
312 Log.d(TAG, "Succeed in creating outgoing call " + mOutgoingCall + " for number " in startCall()
330 if (mOutgoingCall != null) { in stopCall()
331 if (mHfpClientProfile.terminateCall(mPickedDevice, mOutgoingCall)) { in stopCall()
332 Log.d(TAG, "Succeed in terminating outgoing call " + mOutgoingCall); in stopCall()
333 mOutgoingCall = null; in stopCall()
[all …]