Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/
DTbsCall.java69 if (flags.equals(BluetoothLeCall.FLAG_OUTGOING_CALL)) { in flagsToString()
132 return (mFlags & BluetoothLeCall.FLAG_OUTGOING_CALL) == 0; in isIncoming()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothLeCall.java110 public static final int FLAG_OUTGOING_CALL = 0x00000001; field in BluetoothLeCall
291 return (mCallFlags & FLAG_OUTGOING_CALL) == 0; in isIncomingCall()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/tbs/
DTbsGenericTest.java320 BluetoothLeCall.FLAG_OUTGOING_CALL)); in testCurrentCallsList()
600 BluetoothLeCall.FLAG_OUTGOING_CALL)); in testCallOriginate()
DTbsGattTest.java427 BluetoothLeCall.FLAG_OUTGOING_CALL))); in testSetCurrentCallList()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java1691 int callFlags = call.isIncoming() ? 0 : BluetoothLeCall.FLAG_OUTGOING_CALL; in createTbsCall()