Home
last modified time | relevance | path

Searched refs:EncryptConnectionBuilder (Results 1 – 5 of 5) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/packets/link_layer/
Dencrypt_connection_builder.h29 class EncryptConnectionBuilder : public PacketBuilder<true> {
31 virtual ~EncryptConnectionBuilder() = default;
33 static std::unique_ptr<EncryptConnectionBuilder> Create(const std::vector<uint8_t>& key) { in Create()
34 return std::unique_ptr<EncryptConnectionBuilder>(new EncryptConnectionBuilder(key)); in Create()
47 …explicit EncryptConnectionBuilder(const std::vector<uint8_t>& key) : key_(key.begin(), key.begin()… in EncryptConnectionBuilder() function
Dlink_layer_packet_builder.h54 …std::unique_ptr<EncryptConnectionBuilder> encrypt_connection, const Address& source, const Address…
56 …std::unique_ptr<EncryptConnectionBuilder> encrypt_connection, const Address& source, const Address…
Dlink_layer_packet_builder.cc59 …std::unique_ptr<EncryptConnectionBuilder> encrypt_connection, const Address& source, const Address… in WrapEncryptConnection()
65 …std::unique_ptr<EncryptConnectionBuilder> encrypt_connection, const Address& source, const Address… in WrapEncryptConnectionResponse()
/system/bt/vendor_libs/test_vendor_lib/packets/test/
Dlink_layer_packet_builder_test.cc111 auto encrypt_connection_builder = EncryptConnectionBuilder::Create(key); in TEST_F()
133 auto encrypt_connection_builder = EncryptConnectionBuilder::Create(key); in TEST_F()
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dlink_layer_controller.cc302EncryptConnectionBuilder::Create(security_manager_.GetKey(peer)), properties_.GetAddress(), peer)); in IncomingEncryptConnection()
881EncryptConnectionBuilder::Create(security_manager_.GetKey(peer)), properties_.GetAddress(), peer)); in HandleSetConnectionEncryption()