Home
last modified time | relevance | path

Searched refs:BondState (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Bluetooth/floss/pandora/floss/
Dadapter_client.py575 … self._make_device(address, name, bond_state=floss_enums.BondState.BONDED))
577 dev['bond_state'] = floss_enums.BondState.BONDED
727 'bond_state', floss_enums.BondState.NOT_BONDED) == floss_enums.BondState.BONDED
841 if device['bond_state'] == floss_enums.BondState.BONDING:
843 elif device['bond_state'] == floss_enums.BondState.BONDED:
Dfloss_enums.py168 class BondState(enum.IntEnum): class
/packages/modules/Bluetooth/floss/pandora/server/
Dsecurity.py95 if state == floss_enums.BondState.BONDED:
97 elif state == floss_enums.BondState.NOT_BONDED:
148 if state == floss_enums.BondState.BONDED:
150 elif state == floss_enums.BondState.NOT_BONDED:
410 if state == floss_enums.BondState.NOT_BONDED:
Dgatt.py286 … if self.bluetooth.get_bond_state(address) == floss_enums.BondState.BONDING and (uuids is None or
290 if self.bluetooth.get_bond_state(address) != floss_enums.BondState.BONDING:
Dhost.py119 if state == floss_enums.BondState.BONDED:
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dadapter_service.rs58 BaseCallbacks::BondState(_, address, state, _) => { in get_bt_dispatcher()
204 BaseCallbacks::BondState(_, address, state, _) => { in fetch_events()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs1040 BondState(BtStatus, RawAddress, BtBondState, i32), enumerator
1096 cb_variant!(BaseCb, bond_state_cb -> BaseCallbacks::BondState,
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs1413 #[btif_callback(BondState)]