Lines Matching refs:data1
27 const std::vector<uint8_t> data1{0x00}; in TEST() local
28 EXPECT_TRUE(AdvertiseDataParser::IsValid(data1)); in TEST()
37 const std::vector<uint8_t> data1{0x05, 0x02, 0x00, 0x00, 0x00}; in TEST() local
38 EXPECT_FALSE(AdvertiseDataParser::IsValid(data1)); in TEST()
51 EXPECT_FALSE(AdvertiseDataParser::IsValid(data1)); in TEST()
56 EXPECT_FALSE(AdvertiseDataParser::IsValid(data1)); in TEST()
65 const std::vector<uint8_t> data1{0x03, 0x02, 0x01, 0x02, 0x02, 0x03, 0x01}; in TEST() local
66 EXPECT_TRUE(AdvertiseDataParser::IsValid(data1)); in TEST()
119 const std::vector<uint8_t> data1{0x02, 0x02, 0x00, 0x03, 0x00}; in TEST() local
122 data = AdvertiseDataParser::GetFieldByType(data1, 0x02, &p_length); in TEST()
123 EXPECT_EQ(data1.data() + 2, data); in TEST()
127 data = AdvertiseDataParser::GetFieldByType(data1, 0x03, &p_length); in TEST()