Searched refs:Opcode (Results 1 – 12 of 12) sorted by relevance
/system/bt/packet/avrcp/ |
D | avrcp_packet.h | 37 CType cType, uint8_t subunit_type, uint8_t subunit_id, Opcode opcode, 48 Opcode opcode_; 56 Opcode opcode) in PacketBuilder() 87 Opcode GetOpcode() const;
|
D | avrcp_packet.cc | 28 CType type, uint8_t subunit_type, uint8_t subunit_id, Opcode opcode, in MakeBuilder() 89 Opcode Packet::GetOpcode() const { in GetOpcode() 91 return static_cast<Opcode>(value); in GetOpcode()
|
D | pass_through_packet.h | 41 Opcode::PASS_THROUGH), in PassThroughPacketBuilder()
|
D | vendor_packet.h | 49 : PacketBuilder(ctype, 0x09, 0x00, Opcode::VENDOR), in VendorPacketBuilder()
|
/system/connectivity/wifilogd/ |
D | protocol.h | 40 enum class Opcode : uint16_t { enum 54 Command& set_opcode(Opcode new_opcode) { in set_opcode() 69 Opcode opcode;
|
D | command_processor.cpp | 145 using protocol::Opcode; in ProcessCommand() 146 case Opcode::kWriteAsciiMessage: in ProcessCommand() 155 case Opcode::kDumpBuffers: in ProcessCommand() 226 using protocol::Opcode; in Dump() 227 case Opcode::kWriteAsciiMessage: in Dump() 230 case Opcode::kDumpBuffers: in Dump()
|
/system/connectivity/wifilogd/tests/ |
D | protocol_unittest.cpp | 111 using protocol::Opcode; in TEST() 112 EXPECT_EQ(2U, sizeof(Opcode)); in TEST() 113 EXPECT_EQ(0U, static_cast<uint16_t>(Opcode::kWriteAsciiMessage)); in TEST() 114 EXPECT_EQ(0x20U, static_cast<uint16_t>(Opcode::kDumpBuffers)); in TEST()
|
D | command_processor_unittest.cpp | 108 .set_opcode(protocol::Opcode::kWriteAsciiMessage) in BuildAsciiMessageCommandWithAdjustments() 147 .set_opcode(protocol::Opcode::kDumpBuffers) in SendDumpBuffers()
|
/system/bt/include/hardware/avrcp/ |
D | avrcp_logging_helper.h | 54 inline std::string OpcodeText(const Opcode& opcode) { in OpcodeText() 56 CASE_RETURN_TEXT(Opcode::VENDOR); in OpcodeText() 57 CASE_RETURN_TEXT(Opcode::UNIT_INFO); in OpcodeText() 58 CASE_RETURN_TEXT(Opcode::SUBUNIT_INFO); in OpcodeText() 59 CASE_RETURN_TEXT(Opcode::PASS_THROUGH); in OpcodeText() 65 inline std::ostream& operator<<(std::ostream& os, const Opcode& opcode) {
|
D | avrcp_common.h | 42 enum class Opcode : uint8_t { enum
|
/system/bt/packet/tests/avrcp/ |
D | avrcp_packet_test.cc | 71 CType::STATUS, 0x09, 0x00, Opcode::VENDOR, std::move(cap_req_builder)); in TEST() 86 ASSERT_EQ(test_avrcp_packet->GetOpcode(), Opcode::VENDOR); in TEST()
|
/system/bt/profile/avrcp/ |
D | device.cc | 625 case Opcode::UNIT_INFO: { in MessageReceived() 627 case Opcode::SUBUNIT_INFO: { in MessageReceived() 629 case Opcode::PASS_THROUGH: { in MessageReceived() 677 case Opcode::VENDOR: { in MessageReceived()
|