Home
last modified time | relevance | path

Searched refs:command_packet (Results 1 – 13 of 13) sorted by relevance

/system/bt/gd/security/channel/
Dsecurity_manager_channel_unittest.cc280 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
281 hci::CommandView packet_view = hci::CommandView::Create(command_packet); in TEST_F()
296 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
297 hci::CommandView packet_view = hci::CommandView::Create(command_packet); in TEST_F()
329 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
330 hci::CommandView packet_view = hci::CommandView::Create(command_packet); in TEST_F()
344 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
345 hci::CommandView packet_view = hci::CommandView::Create(command_packet); in TEST_F()
373 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
374 hci::CommandView packet_view = hci::CommandView::Create(command_packet); in TEST_F()
[all …]
/system/bt/gd/security/test/
Dfake_hci_layer.h46 std::unique_ptr<hci::CommandBuilder> command_packet, in CommandQueueEntry() argument
48 …: command(std::move(command_packet)), waiting_for_status_(false), on_complete(std::move(on_complet… in CommandQueueEntry()
51 std::unique_ptr<hci::CommandBuilder> command_packet, in CommandQueueEntry() argument
53 …: command(std::move(command_packet)), waiting_for_status_(true), on_status(std::move(on_status_fun… in CommandQueueEntry()
/system/bt/vendor_libs/test_vendor_lib/scripts/
Dbuild_and_run.sh124 bte_logmsg:D command_packet:D dual_mode_controller:D event_packet:D \
/system/bt/gd/hci/
Dle_address_manager_test.cc188 void enqueue_command(std::unique_ptr<CommandBuilder> command_packet) { in enqueue_command() argument
190 std::move(command_packet), in enqueue_command()
312 void enqueue_command(std::unique_ptr<CommandBuilder> command_packet) { in enqueue_command() argument
314 std::move(command_packet), in enqueue_command()
Dhci_layer.cc64 …unique_ptr<CommandBuilder> command_packet, ContextualOnceCallback<void(CommandCompleteView)> on_co… in CommandQueueEntry() argument
65 …: command(move(command_packet)), waiting_for_status_(false), on_complete(move(on_complete_function… in CommandQueueEntry()
68 …unique_ptr<CommandBuilder> command_packet, ContextualOnceCallback<void(CommandStatusView)> on_stat… in CommandQueueEntry() argument
69 … : command(move(command_packet)), waiting_for_status_(true), on_status(move(on_status_function)) {} in CommandQueueEntry()
Dle_address_manager.h112 std::unique_ptr<CommandBuilder> command_packet; member
Dle_address_manager.cc367 enqueue_command_.Run(std::move(command.command_packet)); in handle_next_command()
Dle_scanning_manager_test.cc232 void enqueue_command(std::unique_ptr<CommandBuilder> command_packet){}; in enqueue_command() argument
Dle_advertising_manager_test.cc282 void enqueue_command(std::unique_ptr<CommandBuilder> command_packet){}; in enqueue_command() argument
/system/bt/gd/hci/acl_manager/
Dle_impl.h312 void enqueue_command(std::unique_ptr<CommandBuilder> command_packet) { in enqueue_command()
314 std::move(command_packet), in enqueue_command()
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Ddual_mode_controller.h74 void HandleCommand(std::shared_ptr<std::vector<uint8_t>> command_packet);
Ddual_mode_controller.cc374 auto command_packet = bluetooth::hci::CommandView::Create(raw_packet); in HandleCommand() local
375 ASSERT(command_packet.IsValid()); in HandleCommand()
376 auto op = command_packet.GetOpCode(); in HandleCommand()
392 active_hci_commands_[op](command_packet); in HandleCommand()
/system/bt/gd/security/pairing/
Dclassic_pairing_handler_unittest.cc276 auto command_packet = GetPacketView(std::move(last_command)); in GetLastCommand() local
277 auto command_packet_view = hci::CommandView::Create(command_packet); in GetLastCommand()