Home
last modified time | relevance | path

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

/system/bt/vendor_libs/test_vendor_lib/packets/link_layer/
Dcommand_view.h29 class CommandView : public PacketView<true> {
31 CommandView(const CommandView&) = default;
32 virtual ~CommandView() = default;
34 static CommandView GetCommand(const LinkLayerPacketView& view) { in GetCommand()
36 return CommandView(view.GetPayload()); in GetCommand()
48 CommandView() = delete;
49 CommandView(const PacketView<true>& view) : PacketView(view) {} in CommandView() function
/system/bt/vendor_libs/test_vendor_lib/test/
Dlink_layer_socket_device_test.cc44 using test_vendor_lib::packets::CommandView;
105 CommandView command_view = CommandView::GetCommand(received_view); in ValidatePacket()
202 client_opcodes_[pair_id] = CommandView::GetCommand(view).GetOpcode(); in SendFromClient()
209 server_opcodes_[pair_id] = CommandView::GetCommand(view).GetOpcode(); in SendFromServer()
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dlink_layer_controller.cc211 CommandView command = CommandView::GetCommand(incoming); in IncomingCommandPacket()
/system/bt/vendor_libs/test_vendor_lib/packets/test/
Dlink_layer_packet_builder_test.cc419 auto command_view = CommandView::GetCommand(view); in TEST_F()