Home
last modified time | relevance | path

Searched refs:AvrcTgBrowsePacket (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_tg/
H A Davrcp_tg_browse.h45 class AvrcTgBrowsePacket : public AvrcTgPacket {
50 AvrcTgBrowsePacket();
55 AvrcTgBrowsePacket(uint8_t pduId, uint8_t status, uint8_t label);
60 virtual ~AvrcTgBrowsePacket();
140 BT_DISALLOW_COPY_AND_ASSIGN(AvrcTgBrowsePacket);
166 class AvrcTgSbpPacket : public AvrcTgBrowsePacket {
269 class AvrcTgCpPacket : public AvrcTgBrowsePacket {
402 class AvrcTgGfiPacket : public AvrcTgBrowsePacket {
620 class AvrcTgGiaPacket : public AvrcTgBrowsePacket {
760 class AvrcTgGtnoiPacket : public AvrcTgBrowsePacket {
H A Davrcp_tg_browse.cpp23 AvrcTgBrowsePacket::AvrcTgBrowsePacket() : status_(AVRC_ES_CODE_NO_ERROR), label_(AVRC_INVALID_LABE… in AvrcTgBrowsePacket() function in OHOS::bluetooth::AvrcTgBrowsePacket
28 AvrcTgBrowsePacket::AvrcTgBrowsePacket(uint8_t pduId, uint8_t status, uint8_t label) : status_(stat… in AvrcTgBrowsePacket() function in OHOS::bluetooth::AvrcTgBrowsePacket
37 AvrcTgBrowsePacket::~AvrcTgBrowsePacket() in ~AvrcTgBrowsePacket()
47 const Packet *AvrcTgBrowsePacket::AssemblePacket(void) in AssemblePacket()
68 bool AvrcTgBrowsePacket::DisassemblePacket(Packet *pkt) in DisassemblePacket()
77 bool AvrcTgBrowsePacket::IsValidParameterLength(Packet *pkt) in IsValidParameterLength()
110 : AvrcTgBrowsePacket() in AvrcTgSbpPacket()
337 : AvrcTgBrowsePacket() in AvrcTgGfiPacket()
354 : AvrcTgBrowsePacket() in AvrcTgGfiPacket()
753 : AvrcTgBrowsePacket() in AvrcTgGiaPacket()
[all …]
H A Davrcp_tg_connection.h103 std::shared_ptr<AvrcTgBrowsePacket> pkt_ {nullptr};
456 std::shared_ptr<AvrcTgBrowsePacket> GetBrowsePacket(const RawAddress &rawAddr);
464 void SetBrowsePacket(const RawAddress &rawAddr, const std::shared_ptr<AvrcTgBrowsePacket> &pkt);
H A Davrcp_tg_profile.cpp1542 const RawAddress &rawAddr, std::shared_ptr<AvrcTgBrowsePacket> &pkt, AvrcTgSmEvent event) in SendBrowseRsp()
1564 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgSbpPacket>( in SendSetBrowsedPlayerRsp()
1577 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgSbpPacket>(pkt, label); in ReceiveSetBrowsedPlayerCmd()
1603 …std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgCpPacket>(pkt, uidCounter, lab… in ReceiveChangePathCmd()
1623 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgGfiPacket>( in SendGetFolderItemsRsp()
1640 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgGfiPacket>( in SendGetFolderItemsRsp()
1651 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgGfiPacket>(pkt, label); in ReceiveGetFolderItemsCmd()
1668 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgGiaPacket>( in SendGetItemAttributesRsp()
1703 std::shared_ptr<AvrcTgBrowsePacket> packet = in SendGetTotalNumberOfItemsRsp()
1714 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgGtnoiPacket>(pkt, label); in ReceiveGetTotalNumberOfItemsCmd()
[all …]
H A Davrcp_tg_connection.cpp620 std::shared_ptr<AvrcTgBrowsePacket> AvrcTgConnectManager::GetBrowsePacket(const RawAddress &rawAddr) in GetBrowsePacket()
624 std::shared_ptr<AvrcTgBrowsePacket> pkt = nullptr; in GetBrowsePacket()
636 …Manager::SetBrowsePacket(const RawAddress &rawAddr, const std::shared_ptr<AvrcTgBrowsePacket> &pkt) in SetBrowsePacket()
H A Davrcp_tg_profile.h1306 …static void SendBrowseRsp(const RawAddress &rawAddr, std::shared_ptr<AvrcTgBrowsePacket> &pkt, Avr…
H A Davrcp_tg_state_machine.cpp775 std::shared_ptr<AvrcTgBrowsePacket> packet = cnManager->GetBrowsePacket(rawAddr_); in Dispatch()