Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/packet/avrcp/
Dregister_notification_packet.cc27 return GetCType() == CType::INTERIM; in IsInterim()
45 …if (GetCType() != CType::INTERIM && GetCType() != CType::CHANGED && GetCType() != CType::REJECTED)… in IsValid()
62 ss << " └ cType = " << GetCType() << std::endl; in ToString()
271 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dset_absolute_volume.cc54 if (GetCType() != CType::ACCEPTED) return false; in IsValid()
61 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Davrcp_packet.cc75 CType Packet::GetCType() const { in GetCType() function in bluetooth::avrcp::Packet
98 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dpass_through_packet.cc63 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dset_addressed_player.cc62 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dlist_player_application_setting_values.cc68 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dplay_item.cc72 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Davrcp_packet.h85 CType GetCType() const;
Dset_player_application_setting_value.cc93 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dget_current_player_application_setting_value.cc88 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dget_element_attributes_packet.cc66 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dvendor_packet.cc118 ss << " └ cType = " << GetCType() << std::endl; in ToString()
Dcapabilities_packet.cc65 ss << " └ cType = " << GetCType() << std::endl; in ToString()
/packages/modules/Bluetooth/system/packet/tests/avrcp/
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()
/packages/modules/Bluetooth/system/profile/avrcp/
Ddevice.cc126 if (pkt->GetCType() == CType::NOT_IMPLEMENTED) { in VendorPacketHandler()
130 if (pkt->GetCType() >= CType::ACCEPTED) { in VendorPacketHandler()
571 if (pkt->GetCType() == CType::REJECTED) { in HandleVolumeChanged()
874 if (pkt->GetCType() == CType::ACCEPTED || in MessageReceived()
875 pkt->GetCType() == CType::REJECTED || in MessageReceived()
876 pkt->GetCType() == CType::NOT_IMPLEMENTED) in MessageReceived()
Dconnection_handler.cc601 (uint8_t)(::bluetooth::Packet::Specialize<Packet>(packet)->GetCType()); in SendMessage()