Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPairingRequest.java19 import android.bluetooth.BluetoothCsipSetCoordinator;
88 BluetoothCsipSetCoordinator.ACTION_CSIS_SET_MEMBER_AVAILABLE)) { in onReceive()
94 final int groupId = intent.getIntExtra(BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_ID, in onReceive()
95 BluetoothCsipSetCoordinator.GROUP_ID_INVALID); in onReceive()
96 if (groupId == BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in onReceive()
DBluetoothDetailsMacAddressController.java19 import android.bluetooth.BluetoothCsipSetCoordinator;
54 if (mCachedDevice.getGroupId() != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in refresh()
DUtils.java22 import android.bluetooth.BluetoothCsipSetCoordinator;
251 if (deviceGroupId == BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in getAllOfCachedBluetoothDevices()
DBluetoothDetailsHearingAidsPresetsController.java22 import android.bluetooth.BluetoothCsipSetCoordinator;
124 if (hapGroupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in onPreferenceChange()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/csip/
DCsipSetCoordinatorServiceTest.java111 filter.addAction(BluetoothCsipSetCoordinator.ACTION_CSIS_CONNECTION_STATE_CHANGED); in setUp()
112 filter.addAction(BluetoothCsipSetCoordinator.ACTION_CSIS_DEVICE_AVAILABLE); in setUp()
113 filter.addAction(BluetoothCsipSetCoordinator.ACTION_CSIS_SET_MEMBER_AVAILABLE); in setUp()
491 BluetoothCsipSetCoordinator.ACTION_CSIS_DEVICE_AVAILABLE, intent.getAction()); in testStackEventDeviceAvailable()
494 group_id, intent.getIntExtra(BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_ID, -1)); in testStackEventDeviceAvailable()
497 intent.getIntExtra(BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_SIZE, -1)); in testStackEventDeviceAvailable()
501 BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_TYPE_UUID)); in testStackEventDeviceAvailable()
554 BluetoothCsipSetCoordinator.ACTION_CSIS_SET_MEMBER_AVAILABLE, intent.getAction()); in testStackEventSetMemberAvailableAfterGroupConnected()
557 group_id, intent.getIntExtra(BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_ID, -1)); in testStackEventSetMemberAvailableAfterGroupConnected()
600 BluetoothCsipSetCoordinator.ACTION_CSIS_SET_MEMBER_AVAILABLE, intent.getAction()); in testStackEventSetMemberAvailableBeforeGroupConnected()
[all …]
/packages/apps/Settings/src/com/android/settings/connecteddevice/audiosharing/
DAudioSharingUtils.java26 import android.bluetooth.BluetoothCsipSetCoordinator;
103 if (groupId == BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in fetchConnectedDevicesByGroupId()
347 if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in getGroupId()
358 return BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in getGroupId()
366 BluetoothCsipSetCoordinator.GROUP_ID_INVALID); in getFallbackActiveGroupId()
DAudioSharingCallAudioPreferenceController.java23 import android.bluetooth.BluetoothCsipSetCoordinator;
351 if (fallbackActiveGroupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in updateSummary()
409 : BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in logCallAudioDeviceChange()
410 if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in logCallAudioDeviceChange()
DAudioSharingDeviceVolumeControlUpdater.java20 import android.bluetooth.BluetoothCsipSetCoordinator;
105 if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID in addPreference()
DAudioSharingDeviceVolumeGroupController.java22 import android.bluetooth.BluetoothCsipSetCoordinator;
420 return (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID in getPreferenceOrderForDevice()
DAudioSharingDialogHandler.java20 import android.bluetooth.BluetoothCsipSetCoordinator;
410 && groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID in closeOpeningDialogsForLeaDevice()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hap/
DHapClientService.java25 import android.bluetooth.BluetoothCsipSetCoordinator;
535 return BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in getHapGroup()
914 if (groupId == BluetoothCsipSetCoordinator.GROUP_ID_INVALID) return false; in isGroupIdValid()
1117 } else if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in messageFromNative()
1136 } else if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in messageFromNative()
1152 } else if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in messageFromNative()
1169 } else if (groupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in messageFromNative()
1355 return BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in getHapGroup()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/csip/
DCsipSetCoordinatorService.java27 import android.bluetooth.BluetoothCsipSetCoordinator;
814 Intent intent = new Intent(BluetoothCsipSetCoordinator.ACTION_CSIS_SET_MEMBER_AVAILABLE); in notifySetMemberAvailable()
816 intent.putExtra(BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_ID, groupId); in notifySetMemberAvailable()
836 intent = new Intent(BluetoothCsipSetCoordinator.ACTION_CSIS_DEVICE_AVAILABLE); in messageFromNative()
838 intent.putExtra(BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_ID, groupId); in messageFromNative()
840 BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_SIZE, stackEvent.valueInt2); in messageFromNative()
842 BluetoothCsipSetCoordinator.EXTRA_CSIS_GROUP_TYPE_UUID, stackEvent.valueUuid1); in messageFromNative()
DCsipSetCoordinatorStateMachine.java22 import android.bluetooth.BluetoothCsipSetCoordinator;
568 new Intent(BluetoothCsipSetCoordinator.ACTION_CSIS_CONNECTION_STATE_CHANGED); in csipConnectionState()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DOWNERS2 per-file BluetoothCsipSetCoordinator.java=file:/OWNERS_leaudio
DBluetoothCsipSetCoordinator.java55 public final class BluetoothCsipSetCoordinator implements BluetoothProfile, AutoCloseable { class
211 /*package*/ BluetoothCsipSetCoordinator(Context context, BluetoothAdapter adapter) { in BluetoothCsipSetCoordinator() method in BluetoothCsipSetCoordinator
DBluetoothHapClient.java856 return BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in getHapGroup()
DBluetoothAdapter.java840 BluetoothCsipSetCoordinator::new),
/packages/modules/Bluetooth/android/leaudio/app/src/main/java/com/android/bluetooth/leaudio/
DBluetoothProxy.java60 private BluetoothCsipSetCoordinator bluetoothCsis = null;
659 if (hapGroupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) in initProfiles()
731 if (hapGroupId != BluetoothCsipSetCoordinator.GROUP_ID_INVALID) in initProfiles()
767 bluetoothCsis = (BluetoothCsipSetCoordinator) bluetoothProfile; in initProfiles()
1485 if (bluetoothHapClient == null) return BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in hapGetHapGroup()
1498 return BluetoothCsipSetCoordinator.GROUP_ID_INVALID; in hapGetHapGroup()
/packages/apps/Settings/tests/robotests/src/com/android/settings/connecteddevice/audiosharing/
DAudioSharingCallAudioPreferenceControllerTest.java35 import android.bluetooth.BluetoothCsipSetCoordinator;
404 mContentResolver, TEST_SETTINGS_KEY, BluetoothCsipSetCoordinator.GROUP_ID_INVALID); in displayPreference_noFallbackDevice_showEmptySummary()
522 mContentResolver, TEST_SETTINGS_KEY, BluetoothCsipSetCoordinator.GROUP_ID_INVALID); in testBluetoothLeBroadcastAssistantCallbacks_updateSummary()
553 mContentResolver, TEST_SETTINGS_KEY, BluetoothCsipSetCoordinator.GROUP_ID_INVALID); in testBluetoothLeBroadcastAssistantCallbacks_doNothing()
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDetailsHearingAidsPresetsControllerTest.java19 import static android.bluetooth.BluetoothCsipSetCoordinator.GROUP_ID_INVALID;
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DPhonePolicy.java23 import android.bluetooth.BluetoothCsipSetCoordinator;
202 if (groupId == BluetoothCsipSetCoordinator.GROUP_ID_INVALID) { in isLeAudioOnlyGroup()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/
DPhonePolicyTest.java25 import android.bluetooth.BluetoothCsipSetCoordinator;
283 BluetoothCsipSetCoordinator.GROUP_ID_INVALID, 1, false, false); in testConnectLeAudioOnlyDevices_BandedHeadphones()
/packages/modules/Bluetooth/framework/api/
Dsystem-current.txt169 …public final class BluetoothCsipSetCoordinator implements java.lang.AutoCloseable android.bluetoot…
173 …Null java.util.concurrent.Executor, @NonNull android.bluetooth.BluetoothCsipSetCoordinator.ClientL…
182 public static interface BluetoothCsipSetCoordinator.ClientLockCallback {
Dcurrent.txt515 …public final class BluetoothCsipSetCoordinator implements java.lang.AutoCloseable android.bluetoot…