Home
last modified time | relevance | path

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

/aosp12/system/bt/packet/avrcp/
H A Dregister_notification_packet.cc25 return GetCType() == CType::INTERIM; in IsInterim()
42 …if (GetCType() != CType::INTERIM && GetCType() != CType::CHANGED && GetCType() != CType::REJECTED)… in IsValid()
59 ss << " └ cType = " << GetCType() << std::endl; in ToString()
248 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Dset_absolute_volume.cc54 if (GetCType() != CType::ACCEPTED) return false; in IsValid()
61 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Davrcp_packet.cc76 CType Packet::GetCType() const { in GetCType() function in bluetooth::avrcp::Packet
99 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Dpass_through_packet.cc63 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Dset_addressed_player.cc62 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Davrcp_packet.h84 CType GetCType() const;
H A Dplay_item.cc72 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Dcapabilities_packet.cc61 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Dget_element_attributes_packet.cc64 ss << " └ cType = " << GetCType() << std::endl; in ToString()
H A Dvendor_packet.cc114 ss << " └ cType = " << GetCType() << std::endl; in ToString()
/aosp12/system/bt/packet/tests/avrcp/
H A Davrcp_packet_test.cc83 ASSERT_EQ(test_avrcp_packet->GetCType(), CType::STATUS); in TEST()
96 ASSERT_EQ(test_avrcp_packet->GetCType(), CType::INTERIM); in TEST()
/aosp12/system/bt/profile/avrcp/
H A Ddevice.cc109 if (pkt->GetCType() == CType::NOT_IMPLEMENTED) { in VendorPacketHandler()
113 if (pkt->GetCType() >= CType::ACCEPTED) { in VendorPacketHandler()
373 if (pkt->GetCType() == CType::REJECTED) { in HandleVolumeChanged()
H A Dconnection_handler.cc544 (uint8_t)(::bluetooth::Packet::Specialize<Packet>(packet)->GetCType()); in SendMessage()