/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_avrcp_ct_observer.h | 56 uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/include/ |
H A D | bluetooth_avrcp_ct_observer_proxy.h | 53 uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) override;
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_avrcp_ct.h | 196 PlayStatus(uint32_t songLength, uint32_t songPosition, uint8_t playStatus) in PlayStatus() argument 197 : songLength_(songLength), songPosition_(songPosition), playStatus_(playStatus) in PlayStatus()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_avrcp_tg.h | 307 * @param[in] songLength The total length of the playing song in milliseconds. 315 virtual void OnGetPlayStatus(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition,
|
H A D | interface_profile_avrcp_ct.h | 272 * @param[in] songLength The total length of the playing song in milliseconds. 283 const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_tg/ |
H A D | avrcp_tg_service.cpp | 157 void AvrcpTgService::ObserverImpl::OnGetPlayStatus(const std::string &addr, uint32_t songLength, uint32_t songPosition, in OnGetPlayStatus() argument 160 HILOGI("addr:%{public}s, songLength:%{public}u, songPosition:%{public}u, playStatus:%{public}d, label:%{public}d," in OnGetPlayStatus() 161 " context:%{public}d", GetEncryptAddr(addr).c_str(), songLength, songPosition, playStatus, label, context); in OnGetPlayStatus() 165 service->OnGetPlayStatus(rawAddr, songLength, songPosition, playStatus, label, context); in OnGetPlayStatus() 1613 void AvrcpTgService::OnGetPlayStatus(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, in GetPlayStatus() argument 1616 HILOGI("addr:%{public}s, songLength:%{public}u, songPosition:%{public}u, playStatus:%{public}d, label:%{public}d," in GetPlayStatus() 1617 " context:%{public}d", GET_ENCRYPT_AVRCP_ADDR(rawAddr), songLength, songPosition, playStatus, label, context); in GetPlayStatus() 1632 songLength, in GetPlayStatus() 1641 RawAddress rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, uint8_t label, uint8_t context) in GetPlayStatus() 1643 HILOGI("addr:%{public}s, songLength in GetPlayStatus() 1640 OnGetPlayStatusNative( RawAddress rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, uint8_t label, uint8_t context) GetPlayStatus() argument [all...] |
H A D | avrcp_tg_service.h | 185 * @param[in] songLength The total length of the playing song in milliseconds. 191 void OnGetPlayStatus(const std::string &addr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, 671 * @param[in] songLength The total length of the playing song in milliseconds. 679 void OnGetPlayStatus(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, 1457 * @param[in] songLength The total length of the playing song in milliseconds. 1463 void OnGetPlayStatusNative(RawAddress rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus,
|
H A D | avrcp_tg_vendor.h | 605 * @details You can use this constructor when wants to initialize the attributes [songLength], [songPosition], 608 AvrcTgGpsPacket(uint8_t crCode, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, uint8_t label);
|
H A D | avrcp_tg_vendor.cpp | 1669 uint8_t crCode, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, uint8_t label) in AvrcTgGpsPacket() 1672 HILOGI("crCode:%{public}d, songLength:%{public}u, songPosition:%{public}u, playStatus:%{public}d, " in AvrcTgGpsPacket() 1673 "label:%{public}d", crCode, songLength, songPosition, playStatus, label); in AvrcTgGpsPacket() 1678 songLength_ = songLength; in AvrcTgGpsPacket() 1668 AvrcTgGpsPacket( uint8_t crCode, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, uint8_t label) AvrcTgGpsPacket() argument
|
H A D | avrcp_tg_profile.h | 665 * @param[in] songLength The total length of the playing song in milliseconds. 674 void SendGetPlayStatusRsp(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus,
|
H A D | avrcp_tg_profile.cpp | 839 void AvrcTgProfile::SendGetPlayStatusRsp(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, in SendGetPlayStatusRsp() argument 842 HILOGI("rawAddr:%{public}s, songLength:%{public}u, songPosition:%{public}u, playStatus:%{public}d, " in SendGetPlayStatusRsp() 843 "label:%{public}d, result:%{public}d", GET_ENCRYPT_AVRCP_ADDR(rawAddr), songLength, songPosition, playStatus, in SendGetPlayStatusRsp() 847 ExplainResultToStatusCrCode(result), songLength, songPosition, playStatus, label); in SendGetPlayStatusRsp()
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_avrcp_ct_server.cpp | 129 void OnGetPlayStatus(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, 132 impl_->OnGetPlayStatus(rawAddr, songLength, songPosition, playStatus, result); 479 const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) in OnGetPlayStatus() 481 HILOGI("addr: %{public}s, songLength: %{public}u, songPosition: %{public}u, playStatus: %{public}d, " in OnGetPlayStatus() 482 "res: %{public}d", GET_ENCRYPT_RAW_ADDR(rawAddr), songLength, songPosition, playStatus, result); in OnGetPlayStatus() 487 [rawAddr, songLength, songPosition, playStatus, result](IBluetoothAvrcpCtObserver *observer) { in OnGetPlayStatus() 489 songLength, in OnGetPlayStatus()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_avrcp_ct_observer_stub.cpp | 394 uint32_t songLength = data.ReadUint32(); in OnGetPlayStatusInner() local 400 stub->OnGetPlayStatus(RawAddress(addr), songLength, songPosition, playStatus, result); in OnGetPlayStatusInner() local
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_avrcp_ct_observer_proxy.cpp | 490 uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) in OnGetPlayStatus() 503 if (!data.WriteUint32(songLength)) { in OnGetPlayStatus() 489 OnGetPlayStatus(const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) OnGetPlayStatus() argument
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_avrcp_ct.cpp | 201 uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) override 208 static_cast<uint32_t>(songLength), 617 const BluetoothRemoteDevice &device, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) in OnGetPlayStatus() 619 HILOGI("enter, device: %{public}s, songLength: %{public}d, songPosition: %{public}d, playStatus: %{public}d," in OnGetPlayStatus() 620 " res: %{public}d", GET_ENCRYPT_ADDR(device), songLength, songPosition, playStatus, result); in OnGetPlayStatus()
|
/foundation/communication/bluetooth_service/services/bluetooth/external/dummy/include/stub/ |
H A D | media_service.h | 100 virtual void OnGetPlayStatus(const std::string &addr, uint32_t songLength, uint32_t songPosition,
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_ct/ |
H A D | avrcp_ct_profile.h | 194 * @param[in] songLength The total length of the playing song in milliseconds. 203 const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int status)>
|
H A D | avrcp_ct_service.h | 1114 * @param[in] songLength The total length of the playing song in milliseconds. 1123 const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) const;
|
H A D | avrcp_ct_service.cpp | 1401 const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) const in OnGetPlayStatus() 1403 HILOGI("address: %{public}s, songLength: %{public}d, songPosition: %{public}d, playStatus: %{public}d, " in OnGetPlayStatus() 1404 "result: %{public}d", GET_ENCRYPT_AVRCP_ADDR(rawAddr), songLength, songPosition, playStatus, result); in OnGetPlayStatus() 1407 myObserver_->OnGetPlayStatus(rawAddr, songLength, songPosition, playStatus, result); in OnGetPlayStatus() 1400 OnGetPlayStatus( const RawAddress &rawAddr, uint32_t songLength, uint32_t songPosition, uint8_t playStatus, int result) const OnGetPlayStatus() argument
|