/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/volume/data/repository/ |
D | FakeAudioRepository.kt | 107 fun setBluetoothAudioDeviceCategory(bluetoothAddress: String, category: Int) { in setBluetoothAudioDeviceCategory() 108 deviceCategories[bluetoothAddress] = category in setBluetoothAudioDeviceCategory() 111 override suspend fun getBluetoothAudioDeviceCategory(bluetoothAddress: String): Int { in getBluetoothAudioDeviceCategory() 112 return deviceCategories[bluetoothAddress] ?: AudioManager.AUDIO_DEVICE_CATEGORY_UNKNOWN in getBluetoothAudioDeviceCategory()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stylus/ |
D | StylusManager.kt | 121 val btAddress: String? = device.bluetoothAddress in <lambda>() 139 val currAddress: String? = device.bluetoothAddress in <lambda>() 348 inputDeviceAddressMap[deviceId] = device.bluetoothAddress in <lambda>() 357 device.bluetoothAddress?.let { onStylusBluetoothConnected(deviceId, it) } in <lambda>()
|
D | StylusUsiPowerUI.kt | 179 return inputManager.hasInputDevice { it.isAnyStylusSource && it.bluetoothAddress != null } in hasConnectedBluetoothStylus()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityServiceConnection.java | 697 @NonNull String bluetoothAddress, @NonNull IBrailleDisplayController controller) { in connectBluetoothBrailleDisplay() 702 Objects.requireNonNull(bluetoothAddress); in connectBluetoothBrailleDisplay() 704 if (!BluetoothAdapter.checkBluetoothAddress(bluetoothAddress)) { in connectBluetoothBrailleDisplay() 706 bluetoothAddress + " is not a valid Bluetooth address"); in connectBluetoothBrailleDisplay() 712 .filter(device -> device.getAddress().equalsIgnoreCase(bluetoothAddress)) in connectBluetoothBrailleDisplay() 726 bluetoothAddress, in connectBluetoothBrailleDisplay()
|
D | AbstractAccessibilityServiceConnection.java | 2833 public void connectBluetoothBrailleDisplay(String bluetoothAddress, in connectBluetoothBrailleDisplay() argument
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/volume/data/repository/ |
D | AudioRepository.kt | 92 suspend fun getBluetoothAudioDeviceCategory(bluetoothAddress: String): Int in <lambda>() 220 override suspend fun getBluetoothAudioDeviceCategory(bluetoothAddress: String): Int { in getBluetoothAudioDeviceCategory() 222 audioManager.getBluetoothAudioDeviceCategory(bluetoothAddress) in getBluetoothAudioDeviceCategory()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/stylus/ |
D | StylusManagerTest.kt | 106 whenever(stylusDevice.bluetoothAddress).thenReturn(null) in <lambda>() 107 whenever(btStylusDevice.bluetoothAddress).thenReturn(STYLUS_BT_ADDRESS) in <lambda>() 291 whenever(stylusDevice.bluetoothAddress).thenReturn(STYLUS_BT_ADDRESS) in <lambda>() 305 whenever(stylusDevice.bluetoothAddress).thenReturn(STYLUS_BT_ADDRESS) in <lambda>() 316 whenever(btStylusDevice.bluetoothAddress).thenReturn(null) in <lambda>()
|
D | StylusUsiPowerUiTest.kt | 95 whenever(btStylusDevice.bluetoothAddress).thenReturn("SO:ME:AD:DR:ES") in setUp()
|
/frameworks/base/telecomm/java/android/telecom/ |
D | InCallAdapter.java | 226 public void requestBluetoothAudio(String bluetoothAddress) { in requestBluetoothAudio() argument 228 mAdapter.setAudioRoute(CallAudioState.ROUTE_BLUETOOTH, bluetoothAddress); in requestBluetoothAudio()
|
D | Phone.java | 383 public void requestBluetoothAudio(String bluetoothAddress) { in requestBluetoothAudio() argument 384 mInCallAdapter.requestBluetoothAudio(bluetoothAddress); in requestBluetoothAudio()
|
D | ConnectionServiceAdapter.java | 564 void setAudioRoute(String callId, int audioRoute, String bluetoothAddress) { in setAudioRoute() argument 567 bluetoothAddress); in setAudioRoute() 571 bluetoothAddress, Log.getExternalSession()); in setAudioRoute()
|
D | ConnectionServiceAdapterServant.java | 626 String bluetoothAddress, Session.Info sessionInfo) { 630 args.arg2 = bluetoothAddress;
|
D | RemoteConnectionService.java | 439 public void setAudioRoute(String callId, int audioRoute, String bluetoothAddress,
|
D | Connection.java | 1270 public void onAudioRouteChanged(Connection c, int audioRoute, String bluetoothAddress) {} in onAudioRouteChanged() argument
|
D | ConnectionService.java | 2186 public void onAudioRouteChanged(Connection c, int audioRoute, String bluetoothAddress) { 2189 mAdapter.setAudioRoute(id, audioRoute, bluetoothAddress);
|
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
D | IInCallAdapter.aidl | 53 void setAudioRoute(int route, String bluetoothAddress); in setAudioRoute() argument
|
D | IConnectionServiceAdapter.aidl | 115 void setAudioRoute(String callId, int audioRoute, String bluetoothAddress, in setAudioRoute() argument
|
/frameworks/base/core/java/android/accessibilityservice/ |
D | IAccessibilityServiceConnection.aidl | 223 …void connectBluetoothBrailleDisplay(in String bluetoothAddress, in IBrailleDisplayController contr… in connectBluetoothBrailleDisplay() argument
|
/frameworks/base/core/tests/coretests/src/android/view/accessibility/ |
D | AccessibilityServiceConnectionImpl.java | 252 String bluetoothAddress, IBrailleDisplayController controller) { in connectBluetoothBrailleDisplay() argument
|
/frameworks/native/include/input/ |
D | InputDevice.h | 63 std::optional<std::string> bluetoothAddress; member
|
/frameworks/native/services/inputflinger/reader/include/ |
D | InputDevice.h | 55 return mIdentifier.bluetoothAddress; in getBluetoothAddress()
|
/frameworks/native/services/inputflinger/reader/ |
D | EventHub.cpp | 2326 identifier.bluetoothAddress = identifier.uniqueId; in openDeviceLocked() 2328 for (auto& c : *identifier.bluetoothAddress) { in openDeviceLocked() 2876 toString(device->identifier.bluetoothAddress).c_str()); in dump()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputReader_test.cpp | 2618 identifier.bluetoothAddress = DEVICE_BLUETOOTH_ADDRESS; in SetUp()
|