• Home
  • Raw
  • Download

Lines Matching refs:AvrcpTarget

98 const int AvrcpTarget::kSingletonInstanceId = 0;
100 AvrcpTarget::AvrcpTarget(const Uuid& uuid) : app_identifier_(uuid) { in AvrcpTarget() function in bluetooth::AvrcpTarget
104 AvrcpTarget::~AvrcpTarget() { in ~AvrcpTarget()
108 const Uuid& AvrcpTarget::GetAppIdentifier() const { return app_identifier_; } in GetAppIdentifier()
110 int AvrcpTarget::GetInstanceId() const { return kSingletonInstanceId; } in GetInstanceId()
112 void AvrcpTarget::SetDelegate(Delegate* delegate) { in SetDelegate()
117 bool AvrcpTarget::Enable() { in Enable()
122 void AvrcpTarget::Disable() { in Disable()
127 bool AvrcpTarget::GetPlayStatusResponse(const std::string& str_addr, in GetPlayStatusResponse()
139 bool AvrcpTarget::ListPlayerAppAttrResponse(const std::string& str_addr, in ListPlayerAppAttrResponse()
157 bool AvrcpTarget::GetPlayerAppValueResponse( in GetPlayerAppValueResponse()
179 bool AvrcpTarget::GetPlayerAppAttrTextResponse( in GetPlayerAppAttrTextResponse()
191 bool AvrcpTarget::GetPlayerAppValueTextResponse( in GetPlayerAppValueTextResponse()
203 bool AvrcpTarget::GetElementAttrResponse( in GetElementAttrResponse()
215 bool AvrcpTarget::SetPlayerAppValueResponse(const std::string& str_addr, in SetPlayerAppValueResponse()
226 bool AvrcpTarget::RegisterNotificationResponse( in RegisterNotificationResponse()
239 bool AvrcpTarget::SetVolume(int volume) { in SetVolume()
246 void AvrcpTarget::RemoteFeaturesCallback(const RawAddress& bd_addr, in RemoteFeaturesCallback()
254 void AvrcpTarget::GetPlayStatusCallback(const RawAddress& bd_addr) { in GetPlayStatusCallback()
260 void AvrcpTarget::ListPlayerAppAttrCallback(const RawAddress& bd_addr) { in ListPlayerAppAttrCallback()
266 void AvrcpTarget::ListPlayerAppValuesCallback(btrc_player_attr_t attr_id, in ListPlayerAppValuesCallback()
274 void AvrcpTarget::GetPlayerAppValueCallback(uint8_t num_attr, in GetPlayerAppValueCallback()
288 void AvrcpTarget::GetPlayerAppAttrsTextCallback(uint8_t num_attr, in GetPlayerAppAttrsTextCallback()
302 void AvrcpTarget::GetPlayerAppValuesTextCallback(uint8_t attr_id, in GetPlayerAppValuesTextCallback()
317 void AvrcpTarget::SetPlayerAppValueCallback(btrc_player_settings_t* p_vals, in SetPlayerAppValueCallback()
330 void AvrcpTarget::GetElementAttrCallback(uint8_t num_attr, in GetElementAttrCallback()
343 void AvrcpTarget::RegisterNotificationCallback(btrc_event_id_t event_id, in RegisterNotificationCallback()
353 void AvrcpTarget::VolumeChangeCallback(uint8_t volume, uint8_t ctype, in VolumeChangeCallback()
360 void AvrcpTarget::PassthroughCmdCallback(int id, int key_state, in PassthroughCmdCallback()
377 auto avrcp_target = base::WrapUnique(new AvrcpTarget(uuid)); in RegisterInstance()