Home
last modified time | relevance | path

Searched refs:GetOpcode (Results 1 – 21 of 21) sorted by relevance

/system/bt/packet/avrcp/
Davrcp_packet.cc89 Opcode Packet::GetOpcode() const { in GetOpcode() function in bluetooth::avrcp::Packet
102 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dpass_through_packet.cc66 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dset_absolute_volume.cc64 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dset_addressed_player.cc65 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dplay_item.cc75 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Davrcp_packet.h87 Opcode GetOpcode() const;
Dregister_notification_packet.cc62 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
251 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dcapabilities_packet.cc64 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dvendor_packet.cc117 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
Dget_element_attributes_packet.cc67 ss << " └ OpCode = " << GetOpcode() << std::endl; in ToString()
/system/bt/vendor_libs/test_vendor_lib/packets/hci/
Dcommand_packet_view.h36 uint16_t GetOpcode() const;
Dcommand_packet_view.cc32 uint16_t CommandPacketView::GetOpcode() const { in GetOpcode() function in test_vendor_lib::packets::CommandPacketView
/system/bt/vendor_libs/test_vendor_lib/packets/link_layer/
Dresponse_view.h39 uint16_t GetOpcode() { in GetOpcode() function
Dcommand_view.h39 uint16_t GetOpcode() { in GetOpcode() function
/system/bt/vendor_libs/test_vendor_lib/test/
Dlink_layer_socket_device_test.cc107 ASSERT_EQ(client_opcodes_[index], command_view.GetOpcode()); in ValidatePacket()
109 ASSERT_EQ(server_opcodes_[index], command_view.GetOpcode()); in ValidatePacket()
202 client_opcodes_[pair_id] = CommandView::GetCommand(view).GetOpcode(); in SendFromClient()
209 server_opcodes_[pair_id] = CommandView::GetCommand(view).GetOpcode(); in SendFromServer()
Dpacket_stream_unittest.cc80 EXPECT_EQ(opcode, command->GetOpcode()); in CheckedReceiveCommand()
/system/bt/packet/tests/avrcp/
Davrcp_packet_test.cc86 ASSERT_EQ(test_avrcp_packet->GetOpcode(), Opcode::VENDOR); in TEST()
/system/bt/vendor_libs/test_vendor_lib/packets/test/
Dlink_layer_packet_builder_test.cc372 ASSERT_EQ(opcode, response.GetOpcode()); in TEST_F()
420 ASSERT_EQ(opcode, command_view.GetOpcode()); in TEST_F()
/system/bt/profile/avrcp/
Ddevice.cc620 DEVICE_VLOG(4) << __func__ << ": opcode=" << pkt->GetOpcode(); in MessageReceived()
622 switch (pkt->GetOpcode()) { in MessageReceived()
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dlink_layer_controller.cc212 hci::OpCode opcode = static_cast<hci::OpCode>(command.GetOpcode()); in IncomingCommandPacket()
589 hci::OpCode opcode = static_cast<hci::OpCode>(response.GetOpcode()); in IncomingResponsePacket()
Ddual_mode_controller.cc270 uint16_t opcode = command_packet.GetOpcode(); in HandleCommand()