Home
last modified time | relevance | path

Searched refs:security_command_view (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/gd/security/pairing/
Dclassic_pairing_handler_unittest.cc279 auto security_command_view = hci::SecurityCommandView::Create(command_packet_view); in GetLastCommand() local
280 if (!security_command_view.IsValid()) { in GetLastCommand()
283 return security_command_view; in GetLastCommand()
297 auto security_command_view = GetLastCommand(hci_layer_); in TEST_F() local
298 auto link_key_neg_reply = hci::LinkKeyRequestNegativeReplyView::Create(security_command_view); in TEST_F()
302 security_command_view = GetLastCommand(hci_layer_); in TEST_F()
303 ASSERT_EQ(OpCode::IO_CAPABILITY_REQUEST_REPLY, security_command_view.GetOpCode()); in TEST_F()
304 auto io_cap_request_reply = hci::IoCapabilityRequestReplyView::Create(security_command_view); in TEST_F()
313 security_command_view = GetLastCommand(hci_layer_); in TEST_F()
314 ASSERT_EQ(OpCode::USER_CONFIRMATION_REQUEST_REPLY, security_command_view.GetOpCode()); in TEST_F()
[all …]
/packages/modules/Bluetooth/system/gd/hci/
Dhci_metrics_logging.cc859 SecurityCommandView security_command_view = SecurityCommandView::Create(*command_view); in log_classic_pairing_command_status() local
861 security_command_view.IsValid(), "assert failed: security_command_view.IsValid()"); in log_classic_pairing_command_status()
877 …DataView read_local_oob_data_view = ReadLocalOobDataView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
884 = WriteSimplePairingModeView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
893 = WriteSecureConnectionsHostSupportView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
937 = LinkKeyRequestReplyView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
946 = LinkKeyRequestNegativeReplyView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
955 = IoCapabilityRequestReplyView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
964 = UserConfirmationRequestReplyView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
973 = UserConfirmationRequestNegativeReplyView::Create(std::move(security_command_view)); in log_classic_pairing_command_status()
[all …]