Home
last modified time | relevance | path

Searched refs:temp_cmd_view (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/system/gd/security/test/
Dpairing_handler_le_pair_test.cc62 auto temp_cmd_view = CommandView::Create(packet_bytes_view); in CommandBuilderToView() local
63 return CommandView::Create(temp_cmd_view); in CommandBuilderToView()
135 auto temp_cmd_view = CommandView::Create(*packet_bytes_view); in dequeue_callback_central() local
137 first_command = std::make_unique<CommandView>(CommandView::Create(temp_cmd_view)); in dequeue_callback_central()
144 pairing_handler_a->OnCommandView(CommandView::Create(temp_cmd_view)); in dequeue_callback_central()
151 auto temp_cmd_view = CommandView::Create(*packet_bytes_view); in dequeue_callback_peripheral() local
153 first_command = std::make_unique<CommandView>(CommandView::Create(temp_cmd_view)); in dequeue_callback_peripheral()
160 pairing_handler_b->OnCommandView(CommandView::Create(temp_cmd_view)); in dequeue_callback_peripheral()
/packages/modules/Bluetooth/system/gd/security/
Dpairing_handler_le.cc239 auto temp_cmd_view = CommandView::Create(packet_bytes_view); in ExchangePairingFeature() local
240 auto pairing_request = PairingRequestView::Create(temp_cmd_view); in ExchangePairingFeature()
316 auto temp_cmd_view = CommandView::Create(packet_bytes_view); in ExchangePairingFeature() local
317 auto pairing_response = PairingResponseView::Create(temp_cmd_view); in ExchangePairingFeature()
Dpairing_handler_le_unittest.cc48 auto temp_cmd_view = CommandView::Create(packet_bytes_view); in BuilderToView() local
49 return CommandView::Create(temp_cmd_view); in BuilderToView()
/packages/modules/Bluetooth/system/gd/security/internal/
Dsecurity_manager_impl.cc509 auto temp_cmd_view = CommandView::Create(*packet); in OnSmpCommandLe() local
511 pending_le_pairing_.handler_->OnCommandView(temp_cmd_view); in OnSmpCommandLe()
516 if (!temp_cmd_view.IsValid()) { in OnSmpCommandLe()
521 if (temp_cmd_view.GetCode() == Code::SECURITY_REQUEST) { in OnSmpCommandLe()
528 if (temp_cmd_view.GetCode() == Code::PAIRING_REQUEST && my_role == hci::Role::PERIPHERAL) { in OnSmpCommandLe()
535 PairingRequestView pairing_request = PairingRequestView::Create(temp_cmd_view); in OnSmpCommandLe()