Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hid/
DHidHostNativeInterface.java180 private native boolean connectHidNative(byte[] btAddress, int addressType, int transport); in connectHidNative() argument
183 byte[] btAddress, int addressType, int transport, boolean reconnectAllowed); in disconnectHidNative() argument
185 private native boolean getProtocolModeNative(byte[] btAddress, int addressType, int transport); in getProtocolModeNative() argument
187 private native boolean virtualUnPlugNative(byte[] btAddress, int addressType, int transport); in virtualUnPlugNative() argument
190 byte[] btAddress, int addressType, int transport, byte protocolMode); in setProtocolModeNative() argument
193 byte[] btAddress, in getReportNative() argument
201 byte[] btAddress, int addressType, int transport, byte reportType, String report); in setReportNative() argument
204 byte[] btAddress, int addressType, int transport, String report); in sendDataNative() argument
207 byte[] btAddress, int addressType, int transport, byte idleTime); in setIdleTimeNative() argument
209 private native boolean getIdleTimeNative(byte[] btAddress, int addressType, int transport); in getIdleTimeNative() argument
DHidDeviceNativeInterface.java308 private native boolean connectNative(byte[] btAddress); in connectNative() argument
/packages/modules/Bluetooth/android/ChannelSoundingTestApp/app/src/main/java/com/android/bluetooth/channelsoundingtestapp/
DInitiatorFragment.java142 String btAddress = mSpinnerBtAddress.getSelectedItem().toString(); in onViewCreated()
143 printLog("Target Address: " + btAddress); in onViewCreated()
144 initiatorViewModel.setCsTargetAddress(btAddress); in onViewCreated()
194 String btAddress = ""; in hasValidTarget() local
196 btAddress = mSpinnerBtAddress.getSelectedItem().toString(); in hasValidTarget()
198 if (TextUtils.isEmpty(btAddress)) { in hasValidTarget()
DInitiatorViewModel.java74 void setCsTargetAddress(String btAddress) { in setCsTargetAddress() argument
75 mDistanceMeasurementInitiator.setTargetBtAddress(btAddress); in setCsTargetAddress()
DDistanceMeasurementInitiator.java80 void setTargetBtAddress(String btAddress) { in setTargetBtAddress() argument
81 mTargetBtAddress = btAddress; in setTargetBtAddress()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
DBluetoothScanner.java157 public static void removeDevice(String btAddress) { in removeDevice() argument
159 sReceiver.removeDevice(btAddress); in removeDevice()
316 public void removeDevice(String btAddress) { in removeDevice() argument
320 if (btAddress.equals(d.address)) { in removeDevice()
330 if (btAddress.equals(d.address)) { in removeDevice()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pan/
DPanNativeInterface.java127 private native boolean connectPanNative(byte[] btAddress, int localRole, int remoteRole); in connectPanNative() argument
129 private native boolean disconnectPanNative(byte[] btAddress); in disconnectPanNative() argument
/packages/modules/Bluetooth/system/btcore/fuzzer/
Dbtcore_property_fuzzer.cpp40 RawAddress btAddress = {addr}; in process() local
41 bt_property_t* property = property_new_addr(&btAddress); in process()
DREADME.md14 3. Bluetooth Address (parameter name: `btAddress`)
21 | `btAddress` | Values inside array ranges from `0x0` to `0xFF` | Value obtained from FuzzedDataPro…
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDeviceDetailsFragment.java179 String btAddress = im.getInputDeviceBluetoothAddress(deviceId); in getInputDevice() local
181 if (btAddress != null && btAddress.equals(mDeviceAddress)) { in getInputDevice()