Searched refs:peer_type (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/system/gd/security/ |
D | facade.cc | 116 hci::AddressType peer_type = static_cast<hci::AddressType>(request->type()); in CreateBond() local 117 security_module_->GetSecurityManager()->CreateBond(hci::AddressWithType(peer, peer_type)); in CreateBond() 129 hci::AddressType peer_type = static_cast<hci::AddressType>(request->address().type()); in CreateBondOutOfBand() local 145 hci::AddressWithType(peer, peer_type), p192_data, p256_data); in CreateBondOutOfBand() 173 hci::AddressType peer_type = static_cast<hci::AddressType>(request->type()); in CreateBondLe() local 174 security_module_->GetSecurityManager()->CreateBondLe(hci::AddressWithType(peer, peer_type)); in CreateBondLe() 186 hci::AddressType peer_type = hci::AddressType::PUBLIC_DEVICE_ADDRESS; in CancelBond() local 187 security_module_->GetSecurityManager()->CancelBond(hci::AddressWithType(peer, peer_type)); in CancelBond() 199 hci::AddressType peer_type = hci::AddressType::PUBLIC_DEVICE_ADDRESS; in RemoveBond() local 200 security_module_->GetSecurityManager()->RemoveBond(hci::AddressWithType(peer, peer_type)); in RemoveBond() [all …]
|
/packages/modules/Bluetooth/system/blueberry/tests/gd/hci/ |
D | le_acl_manager_test.py | 151 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.RANDOM_DEVICE_ADDRESS) 171 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.RANDOM_DEVICE_ADDRESS) 192 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.RANDOM_DEVICE_ADDRESS) 212 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.RANDOM_DEVICE_ADDRESS) 228 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.PUBLIC_DEVICE_ADDRESS) 245 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.PUBLIC_DEVICE_ADDRESS) 288 assertThat(cert_le_acl.peer_type).isEqualTo(hci.AddressType.RANDOM_DEVICE_ADDRESS)
|
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/ |
D | py_hci.py | 58 …def __init__(self, handle, acl_stream, device, peer, peer_type, peer_resolvable, local_resolvable): argument 62 self.peer_type = peer_type 242 peer_type = connection_complete.get().peer_address_type 247 …return PyHciLeAclConnection(handle, self.acl_stream, self.device, repr(peer), peer_type, repr(peer…
|