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.cc276 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
277 hci::CommandPacketView packet_view = hci::CommandPacketView::Create(command_packet); in TEST_F()
292 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
293 hci::CommandPacketView packet_view = hci::CommandPacketView::Create(command_packet); in TEST_F()
325 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
326 hci::CommandPacketView packet_view = hci::CommandPacketView::Create(command_packet); in TEST_F()
340 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
341 hci::CommandPacketView packet_view = hci::CommandPacketView::Create(command_packet); in TEST_F()
369 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F() local
370 hci::CommandPacketView packet_view = hci::CommandPacketView::Create(command_packet); in TEST_F()
[all …]
/system/bt/gd/security/test/
Dfake_hci_layer.h46 CommandQueueEntry(std::unique_ptr<CommandPacketBuilder> command_packet, in CommandQueueEntry() argument
48 …: command(std::move(command_packet)), waiting_for_status_(false), on_complete(std::move(on_complet… in CommandQueueEntry()
50 CommandQueueEntry(std::unique_ptr<CommandPacketBuilder> command_packet, in CommandQueueEntry() argument
52 …: command(std::move(command_packet)), waiting_for_status_(true), on_status(std::move(on_status_fun… in CommandQueueEntry()
/system/bt/gd/hci/
Dhci_layer.cc57 CommandQueueEntry(unique_ptr<CommandPacketBuilder> command_packet, in CommandQueueEntry() argument
59 …: command(move(command_packet)), waiting_for_status_(false), on_complete(move(on_complete_function… in CommandQueueEntry()
61 CommandQueueEntry(unique_ptr<CommandPacketBuilder> command_packet, in CommandQueueEntry() argument
63 … : command(move(command_packet)), waiting_for_status_(true), on_status(move(on_status_function)) {} in CommandQueueEntry()
Dle_address_manager_test.cc180 void enqueue_command(std::unique_ptr<CommandPacketBuilder> command_packet) { in enqueue_command() argument
182 std::move(command_packet), in enqueue_command()
303 void enqueue_command(std::unique_ptr<CommandPacketBuilder> command_packet) { in enqueue_command() argument
305 std::move(command_packet), in enqueue_command()
Dle_address_manager.h124 std::unique_ptr<CommandPacketBuilder> command_packet; member
Dle_address_manager.cc319 enqueue_command_.Run(std::move(command.command_packet)); in handle_next_command()
Dle_scanning_manager_test.cc221 void enqueue_command(std::unique_ptr<CommandPacketBuilder> command_packet){}; in enqueue_command() argument
Dle_advertising_manager_test.cc258 void enqueue_command(std::unique_ptr<CommandPacketBuilder> command_packet){}; in enqueue_command() argument
/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/acl_manager/
Dle_impl.h238 void enqueue_command(std::unique_ptr<CommandPacketBuilder> command_packet) { in enqueue_command()
240 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.cc322 auto command_packet = bluetooth::hci::CommandPacketView::Create(raw_packet); in HandleCommand() local
323 ASSERT(command_packet.IsValid()); in HandleCommand()
324 auto op = command_packet.GetOpCode(); in HandleCommand()
340 active_hci_commands_[op](command_packet); in HandleCommand()
/system/bt/gd/security/pairing/
Dclassic_pairing_handler_unittest.cc230 auto command_packet = GetPacketView(std::move(last_command)); in GetLastCommand() local
231 auto command_packet_view = hci::CommandPacketView::Create(command_packet); in GetLastCommand()