Searched refs:attribute_list (Results 1 – 7 of 7) sorted by relevance
35 auto attribute_list = test_packet->GetAttributesRequested(); in TEST() local36 ASSERT_EQ(attribute_list.size(), 1u); in TEST()37 ASSERT_EQ(attribute_list[0], Attribute::TITLE); in TEST()46 attribute_list = test_packet->GetAttributesRequested(); in TEST()47 ASSERT_EQ(attribute_list.size(), 7u); in TEST()48 ASSERT_EQ(attribute_list[0], Attribute::TITLE); in TEST()49 ASSERT_EQ(attribute_list[1], Attribute::ARTIST_NAME); in TEST()50 ASSERT_EQ(attribute_list[2], Attribute::ALBUM_NAME); in TEST()51 ASSERT_EQ(attribute_list[3], Attribute::TRACK_NUMBER); in TEST()52 ASSERT_EQ(attribute_list[4], Attribute::PLAYING_TIME); in TEST()[all …]
236 std::vector<Attribute> attribute_list = {Attribute::TITLE}; in TEST() local237 ASSERT_EQ(test_packet->GetAttributesRequested(), attribute_list); in TEST()
56 std::vector<PlayerAttribute> attribute_list; in GetRequestedAttributes() local59 attribute_list.push_back(static_cast<PlayerAttribute>(*it)); in GetRequestedAttributes()63 return attribute_list; in GetRequestedAttributes()
68 std::vector<PlayerAttribute> attribute_list; in GetRequestedAttributes() local70 attribute_list.push_back((PlayerAttribute)it.extract8()); in GetRequestedAttributes()72 return attribute_list; in GetRequestedAttributes()
42 std::vector<Attribute> attribute_list; in GetAttributesRequested() local45 attribute_list.push_back((Attribute)it.extractBE<uint32_t>()); in GetAttributesRequested()48 return attribute_list; in GetAttributesRequested()
112 std::vector<Attribute> attribute_list; in GetAttributesRequested() local114 attribute_list.push_back((Attribute)it.extractBE<uint32_t>()); in GetAttributesRequested()117 return attribute_list; in GetAttributesRequested()
261 std::vector<Attribute> attribute_list; in GetAttributesRequested() local264 if (number_of_attributes == 0xFF) return attribute_list; in GetAttributesRequested()271 attribute_list.push_back((Attribute)it.extractBE<uint32_t>()); in GetAttributesRequested()274 return attribute_list; in GetAttributesRequested()