Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/tests/fuzzers/
DInputReaderFuzzer.cpp162 std::optional<std::string> getBluetoothAddress(int32_t deviceId) const { in getBluetoothAddress() function in android::FuzzInputReader
163 return reader->getBluetoothAddress(deviceId); in getBluetoothAddress()
290 [&]() -> void { reader->getBluetoothAddress(fdp->ConsumeIntegral<int32_t>()); }, in LLVMFuzzerTestOneInput()
/frameworks/base/services/core/java/com/android/server/input/
DNativeInputManagerService.java230 String getBluetoothAddress(int deviceId); in getBluetoothAddress() method
526 public native String getBluetoothAddress(int deviceId); in getBluetoothAddress() method in NativeInputManagerService.NativeImpl
DBatteryController.java245 InputDevice::getBluetoothAddress)); in getBluetoothDevice()
DInputManagerService.java2020 final String address = mNative.getBluetoothAddress(deviceId); in getInputDeviceBluetoothAddress()
/frameworks/native/services/inputflinger/include/
DInputReaderBase.h390 virtual std::optional<std::string> getBluetoothAddress(int32_t deviceId) const = 0;
/frameworks/native/services/inputflinger/reader/include/
DInputReader.h115 std::optional<std::string> getBluetoothAddress(int32_t deviceId) const override;
DInputDevice.h54 inline std::optional<std::string> getBluetoothAddress() const { in getBluetoothAddress() function
/frameworks/native/services/inputflinger/reader/
DInputReader.cpp868 std::optional<std::string> InputReader::getBluetoothAddress(int32_t deviceId) const { in getBluetoothAddress() function in android::InputReader
873 return device->getBluetoothAddress(); in getBluetoothAddress()
/frameworks/base/core/java/android/view/
DInputDevice.java1220 public String getBluetoothAddress() { in getBluetoothAddress() method in InputDevice
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp307 std::optional<std::string> getBluetoothAddress(int32_t deviceId);
1702 std::optional<std::string> NativeInputManager::getBluetoothAddress(int32_t deviceId) { in getBluetoothAddress() function in android::NativeInputManager
1703 return mInputManager->getReader().getBluetoothAddress(deviceId); in getBluetoothAddress()
2664 const auto address = im->getBluetoothAddress(deviceId); in nativeGetBluetoothAddress()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp3001 const auto& address = mReader->getBluetoothAddress(DEVICE_ID); in TEST_F()