Home | History | Annotate | Download | only in avrcp

Lines Matching refs:SONG

354   for (const SongInfo& song : song_list) {
355 now_playing_ids_.insert(song.media_id);
356 if (curr_song_id == song.media_id) {
358 << song.media_id;
880 (temp.type == ListItem::SONG && temp.song.media_id == media_id)) {
902 if (item_requested.song.attributes.find(attribute) !=
903 item_requested.song.attributes.end()) {
905 *item_requested.song.attributes.find(attribute));
911 for (const auto& attribute : item_requested.song.attributes) {
958 const SongInfo& song, const std::vector<Attribute>& attrs) {
961 if (song.attributes.find(attr) != song.attributes.end()) {
962 result.insert(*song.attributes.find(attr));
984 } else if (item.type == ListItem::SONG) {
985 vfs_ids_.insert(item.song.media_id);
1002 } else if (items[i].type == ListItem::SONG) {
1003 auto song = items[i].song;
1005 song.attributes.find(Attribute::TITLE) != song.attributes.end()
1006 ? song.attributes.find(Attribute::TITLE)->value()
1007 : "No Song Info";
1008 MediaElementItem song_item(vfs_ids_.get_uid(song.media_id), title,
1012 song_item.attributes_ = std::move(song.attributes);
1015 filter_attributes_requested(song, pkt->GetAttributesRequested());
1033 for (const SongInfo& song : song_list) {
1034 now_playing_ids_.insert(song.media_id);
1039 auto song = song_list[i];
1040 auto title = song.attributes.find(Attribute::TITLE) != song.attributes.end()
1041 ? song.attributes.find(Attribute::TITLE)->value()
1042 : "No Song Info";
1046 item.attributes_ = std::move(song.attributes);
1049 filter_attributes_requested(song, pkt->GetAttributesRequested());
1167 for (const SongInfo& song : song_list) {
1168 now_playing_ids_.insert(song.media_id);
1272 out << " Last Song Sent ID: \"" << d.last_song_info_.media_id << "\""