Home
last modified time | relevance | path

Searched refs:remove_bond (Results 1 – 18 of 18) sorted by relevance

/packages/modules/Bluetooth/system/blueberry/tests/gd/security/
Dsecurity_test.py237 …self.dut_security.remove_bond(self.cert.address, common.BluetoothAddressTypeEnum.PUBLIC_DEVICE_ADD…
238 …self.cert_security.remove_bond(self.cert.address, common.BluetoothAddressTypeEnum.PUBLIC_DEVICE_AD…
256 …self.dut_security.remove_bond(self.cert.address, common.BluetoothAddressTypeEnum.PUBLIC_DEVICE_ADD…
257 …self.cert_security.remove_bond(self.cert.address, common.BluetoothAddressTypeEnum.PUBLIC_DEVICE_AD…
352 self.dut_security.remove_bond(self.cert_security.get_address(),
354 self.cert_security.remove_bond(self.dut_security.get_address(),
486 self.dut_security.remove_bond(self.cert_security.get_address(),
488 self.cert_security.remove_bond(self.dut_security.get_address(),
513 self.dut_security.remove_bond(self.cert_security.get_address(),
515 self.cert_security.remove_bond(self.dut_security.get_address(),
[all …]
Dcert_security.py112 def remove_bond(self, address, type): member in CertSecurity
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dsecurity_service.rs33 fn remove_bond(&mut self, ctx: RpcContext<'_>, req: RemoveBondRequest, sink: UnarySink<Empty>) { in remove_bond() method
35 self.btif_intf.lock().unwrap().remove_bond(&raw_address); in remove_bond()
/packages/modules/Bluetooth/system/blueberry/tests/sl4a_sl4a/lib/
Dsecurity.py125 self.remove_bond(device["address"])
127 def remove_bond(self, address): member in Security
/packages/modules/Bluetooth/floss/pandora/server/
Dsecurity.py421 remove_bond = asyncio.get_running_loop().create_future()
422 observer = BondingObserver({'remove_bond': remove_bond, 'address': address})
425 self.bluetooth.remove_bond(address)
426 success, reason = await remove_bond
Dbluetooth.py262 def remove_bond(self, address): member in Bluetooth
263 return self.adapter_client.remove_bond(address)
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/
Dsecurity_client.py62 async def remove_bond(self, address): member in SecurityClient
Dtopshim_device.py182 self.__post(self.__security.remove_bond(address))
/packages/modules/Bluetooth/system/btif/src/
Dbluetooth.cc653 static int remove_bond(const RawAddress* bd_addr) { in remove_bond() function
1178 .remove_bond = remove_bond,
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/
Dpy_security.py104 def remove_bond(self, address, type): member in PySecurity
/packages/modules/Bluetooth/system/include/hardware/
Dbluetooth.h761 int (*remove_bond)(const RawAddress* bd_addr); member
/packages/modules/Bluetooth/floss/pandora/floss/
Dadapter_client.py758 def remove_bond(self, address): member in FlossAdapterClient
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs1368 pub fn remove_bond(&self, addr: &RawAddress) -> i32 { in remove_bond() method
1370 ccall!(self, remove_bond, addr_ptr.into()) in remove_bond()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs167 fn remove_bond(&mut self, device: BluetoothDevice) -> bool; in remove_bond() method
2466 fn remove_bond(&mut self, device: BluetoothDevice) -> bool { in remove_bond() method
2475 let status = self.intf.lock().unwrap().remove_bond(&address); in remove_bond()
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth.rs610 fn remove_bond(&mut self, device: BluetoothDevice) -> bool { in remove_bond() method
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcommand_handler.rs810 self.lock_context().adapter_dbus.as_mut().unwrap().remove_bond(device); in cmd_bond()
Ddbus_iface.rs875 fn remove_bond(&mut self, device: BluetoothDevice) -> bool { in remove_bond() method
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_btservice_AdapterService.cpp1445 int ret = sBluetoothInterface->remove_bond((RawAddress*)addr); in removeBondNative()