/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_avrcp_tg.h | 180 * @param[in] numOfItems The number of items in the directory. 195 virtual void OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 362 * @param[in] numOfItems The number of items in the directory. 375 virtual void OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, uint8_t label, int status) = 0; 446 * @param[in] numOfItems The number of items in the directory. 457 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) = 0;
|
H A D | interface_profile_avrcp_ct.h | 124 * @param[in] numOfItems The number of items in the directory. 142 virtual void OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 335 * @param[in] numOfItems The number of items in the directory. 351 virtual void OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, int result, int detail) = 0; 427 * @param[in] numOfItems The number of items in the directory. 441 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_tg/ |
H A D | avrcp_tg_service.cpp | 61 void AvrcpTgService::ObserverImpl::OnSetBrowsedPlayer(const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, in OnSetBrowsedPlayer() argument 64 HILOGI("addr: %{public}s, uidCounter: %{public}d, numOfItems: %{public}u, label: %{public}d, status: %{public}d", in OnSetBrowsedPlayer() 65 GetEncryptAddr(addr).c_str(), uidCounter, numOfItems, label, status); in OnSetBrowsedPlayer() 70 service->OnSetBrowsedPlayer(rawAddr, uidCounter, numOfItems, folderNames, label, status); in OnSetBrowsedPlayer() 190 void AvrcpTgService::ObserverImpl::OnChangePath(const std::string &addr, uint32_t numOfItems, uint8_t label, int status) in OnChangePath() argument 192 HILOGI("addr: %{public}s, numOfItems: %{public}u, label: %{public}d, status: %{public}d", in OnChangePath() 193 GetEncryptAddr(addr).c_str(), numOfItems, label, status); in OnChangePath() 198 service->OnChangePath(rawAddr, numOfItems, label, status); in OnChangePath() 257 const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) in OnGetTotalNumberOfItems() 259 HILOGI("addr: %{public}s, uidCounter: %{public}d, numOfItems in OnGetTotalNumberOfItems() 256 OnGetTotalNumberOfItems( const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) OnGetTotalNumberOfItems() argument 1127 OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, const std::vector<std::string> &folderNames, uint8_t label, int status) OnSetBrowsedPlayer() argument 1153 OnSetBrowsedPlayerNative(RawAddress rawAddr, uint16_t uidCounter, uint32_t numOfItems, std::vector<std::string> folderNames, uint8_t label, int status) OnSetBrowsedPlayerNative() argument 1771 OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, uint8_t label, int status) GetPlayStatus() argument 1791 OnChangePathNative(RawAddress rawAddr, uint32_t numOfItems, uint8_t label, int status) GetPlayStatus() argument 1961 OnGetTotalNumberOfItems( const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) GetPlayStatus() argument 1982 OnGetTotalNumberOfItemsNative( RawAddress rawAddr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) GetPlayStatus() argument [all...] |
H A D | avrcp_tg_service.h | 91 * @param[in] numOfItems The number of items in the directory. 104 void OnSetBrowsedPlayer(const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, 238 * @param[in] numOfItems The number of items in the directory. 249 void OnChangePath(const std::string &addr, uint32_t numOfItems, uint8_t label, int status) override; 310 * @param[in] numOfItems The number of items in the directory. 319 const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) override; 560 * @param[in] numOfItems The number of items in the directory. 573 void OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 733 * @param[in] numOfItems The number of items in the directory. 744 void OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, uint8_ [all...] |
H A D | avrcp_tg_browse.h | 172 * [numOfItems], [folderNames] and [label]. 174 AvrcTgSbpPacket(uint16_t mtu, uint8_t status, uint16_t uidCounter, uint32_t numOfItems, 274 * @details You can use this constructor when wants to initialize the attributes [status], [numOfItems] and 277 AvrcTgCpPacket(uint8_t status, uint32_t numOfItems, uint8_t label); 626 * [numOfItems] and [label]. 766 * [numOfItems] and [label]. 768 AvrcTgGtnoiPacket(uint8_t status, uint16_t uidCounter, uint32_t numOfItems, uint8_t label);
|
H A D | avrcp_tg_browse.cpp | 108 AvrcTgSbpPacket::AvrcTgSbpPacket(uint16_t mtu, uint8_t status, uint16_t uidCounter, uint32_t numOfItems, in AvrcTgSbpPacket() argument 120 numOfItems_ = numOfItems; in AvrcTgSbpPacket() 229 AvrcTgCpPacket::AvrcTgCpPacket(uint8_t status, uint32_t numOfItems, uint8_t label) in AvrcTgCpPacket() argument 232 HILOGI("status: %{public}d, numOfItems: %{public}u, label: %{public}d", status, numOfItems, label); in AvrcTgCpPacket() 238 numOfItems_ = numOfItems; in AvrcTgCpPacket() 933 AvrcTgGtnoiPacket::AvrcTgGtnoiPacket(uint8_t status, uint16_t uidCounter, uint32_t numOfItems, uint8_t label) in AvrcTgGtnoiPacket() argument 936 HILOGI("status: %{public}d, uidCounter: %{public}d, numOfItems: %{public}u, label: %{public}d", in AvrcTgGtnoiPacket() 937 status, uidCounter, numOfItems, label); in AvrcTgGtnoiPacket() 944 numOfItems_ = numOfItems; in AvrcTgGtnoiPacket() [all...] |
H A D | avrcp_tg_profile.h | 840 * @param[in] numOfItems The number of items in the directory. 851 void SendSetBrowsedPlayerRsp(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 858 * @param[in] numOfItems The number of items in the directory. 869 void SendChangePathRsp(const RawAddress &rawAddr, uint32_t numOfItems, uint8_t label, int status); 932 * @param[in] numOfItems The number of items in the directory. 941 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status);
|
H A D | avrcp_tg_profile.cpp | 1554 void AvrcTgProfile::SendSetBrowsedPlayerRsp(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, in SendSetBrowsedPlayerRsp() argument 1557 HILOGI("rawAddr:%{public}s, uidCounter:%{public}d, numOfItems:%{public}u, label:%{public}d, status:%{public}d", in SendSetBrowsedPlayerRsp() 1558 GET_ENCRYPT_AVRCP_ADDR(rawAddr), uidCounter, numOfItems, label, status); in SendSetBrowsedPlayerRsp() 1565 AVCT_BrGetPeerMtu(cnManager->GetConnectId(rawAddr)), status, uidCounter, numOfItems, folderNames, label); in SendSetBrowsedPlayerRsp() 1586 void AvrcTgProfile::SendChangePathRsp(const RawAddress &rawAddr, uint32_t numOfItems, uint8_t label, int status) in SendChangePathRsp() argument 1588 HILOGI("rawAddr:%{public}s, numOfItems:%{public}u, label:%{public}d, status:%{public}d", in SendChangePathRsp() 1589 GET_ENCRYPT_AVRCP_ADDR(rawAddr), numOfItems, label, status); in SendChangePathRsp() 1591 std::shared_ptr<AvrcTgBrowsePacket> packet = std::make_shared<AvrcTgCpPacket>(status, numOfItems, label); in SendChangePathRsp() 1694 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) in SendGetTotalNumberOfItemsRsp() 1696 HILOGI("rawAddr:%{public}s, uidCounter:%{public}d, numOfItems in SendGetTotalNumberOfItemsRsp() 1693 SendGetTotalNumberOfItemsRsp( const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) SendGetTotalNumberOfItemsRsp() argument [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_avrcp_ct_server.cpp | 76 void OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 79 impl_->OnSetBrowsedPlayer(rawAddr, uidCounter, numOfItems, folderNames, result, detail); 145 void OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, int result, int detail) override 169 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) override 171 impl_->OnGetTotalNumberOfItems(rawAddr, uidCounter, numOfItems, result, detail); 348 void OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, in OnSetBrowsedPlayer() 357 [rawAddr, uidCounter, numOfItems, folderNames, result, detail](IBluetoothAvrcpCtObserver *observer) { in OnSetBrowsedPlayer() 360 static_cast<int32_t>(numOfItems), in OnSetBrowsedPlayer() 570 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) in OnGetTotalNumberOfItems() 572 HILOGI("addr: %{public}s, uidCounter: %{public}hu, numOfItems in OnGetTotalNumberOfItems() [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/external/dummy/include/stub/ |
H A D | media_service.h | 77 virtual void OnSetBrowsedPlayer(const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, 107 virtual void OnChangePath(const std::string &addr, uint32_t numOfItems, uint8_t label, int status) = 0; 119 const std::string &addr, uint16_t uidCounter, uint32_t numOfItems, uint8_t label, int status) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_ct/ |
H A D | avrcp_ct_profile.h | 228 * @param[in] numOfItems The number of items in the directory. 244 std::function<void(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 252 * @param[in] numOfItems The number of items in the directory. 266 std::function<void(const RawAddress &rawAddr, uint32_t numOfItems, int result, int detail)> onChangePath; 320 * @param[in] numOfItems The number of items in the directory. 331 std::function<void(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail)>
|
H A D | avrcp_ct_service.h | 885 * @param[in] numOfItems The number of items in the directory. 901 void OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 1240 * @param[in] numOfItems The number of items in the directory. 1254 void OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, int result, int detail) const; 1342 * @param[in] numOfItems The number of items in the directory. 1354 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) const;
|
H A D | avrcp_ct_service.cpp | 831 void AvrcpCtService::OnSetBrowsedPlayer(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, in OnSetBrowsedPlayer() argument 834 HILOGI("addr: %{public}s, uidCounter: %{public}hu, numOfItems: %{public}d, folderNames.size: %{public}zu, " in OnSetBrowsedPlayer() 835 "result: %{public}d, detail: %{public}d", GET_ENCRYPT_AVRCP_ADDR(rawAddr), uidCounter, numOfItems, in OnSetBrowsedPlayer() 839 myObserver_->OnSetBrowsedPlayer(rawAddr, uidCounter, numOfItems, folderNames, result, detail); in OnSetBrowsedPlayer() 1670 void AvrcpCtService::OnChangePath(const RawAddress &rawAddr, uint32_t numOfItems, int result, int detail) const in OnChangePath() argument 1672 HILOGI("address: %{public}s, numOfItems: %{public}u, result: %{public}d, detail: %{public}d", in OnChangePath() 1673 GET_ENCRYPT_AVRCP_ADDR(rawAddr), numOfItems, result, detail); in OnChangePath() 1676 myObserver_->OnChangePath(rawAddr, numOfItems, result, detail); in OnChangePath() 1862 const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) const in OnGetTotalNumberOfItems() 1864 HILOGI("addr:%{public}s, uidCounter:%{public}d, numOfItems in OnGetTotalNumberOfItems() 1861 OnGetTotalNumberOfItems( const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) const OnGetTotalNumberOfItems() argument [all...] |
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_avrcp_ct_observer.h | 58 virtual void OnGetTotalNumberOfItems(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems,
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/include/ |
H A D | bluetooth_avrcp_ct_observer_proxy.h | 55 void OnGetTotalNumberOfItems(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems,
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_avrcp_ct.h | 309 TotalNumberOfItems(uint16_t uidCounter, uint32_t numOfItems) in TotalNumberOfItems() argument 310 : uidCounter_(uidCounter), numOfItems_(numOfItems) in TotalNumberOfItems()
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_avrcp_ct.cpp | 288 void OnGetTotalNumberOfItems(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, 291 HILOGI("address: %{public}s, uidCounter: %{public}d, numOfItems: %{public}d, res: %{public}d, " 292 "detail: %{public}d", GET_ENCRYPT_RAW_ADDR(rawAddr), uidCounter, numOfItems, result, detail); 297 static_cast<uint32_t>(numOfItems), 487 void OnSetBrowsedPlayer(const BluetoothRemoteDevice &device, uint16_t uidCounter, uint32_t numOfItems, in OnSetBrowsedPlayer() 720 const BluetoothRemoteDevice &device, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) in OnGetTotalNumberOfItems() 726 observers_.ForEach([device, uidCounter, numOfItems, result](std::shared_ptr<IObserver> observer) { in OnGetTotalNumberOfItems() 728 resp.totalItems_ = std::make_unique<AvrcpCtResponse::TotalNumberOfItems>(uidCounter, numOfItems); in OnGetTotalNumberOfItems()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_avrcp_ct_observer_stub.cpp | 420 uint32_t numOfItems = data.ReadUint32(); in OnGetTotalNumberOfItemsInner() local 424 stub->OnGetTotalNumberOfItems(RawAddress(addr), uidCounter, numOfItems, result, detail); in OnGetTotalNumberOfItemsInner() local
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_avrcp_ct_observer_proxy.cpp | 568 uint16_t uidCounter, uint32_t numOfItems, int result, int detail) in OnGetTotalNumberOfItems() 586 if (!data.WriteUint32(numOfItems)) { in OnGetTotalNumberOfItems() 567 OnGetTotalNumberOfItems(const RawAddress &rawAddr, uint16_t uidCounter, uint32_t numOfItems, int result, int detail) OnGetTotalNumberOfItems() argument
|