Home | History | Annotate | Download | only in adb

Lines Matching defs:product

89     ASSERT_EQ(nullptr, t.product);
98 "host::ro.product.name=foo;ro.product.model=bar;ro.product.device=baz;";
105 ASSERT_EQ(std::string("foo"), t.product);
114 "host::ro.product.name=foo;ro.product.model=bar;ro.product.device=baz;"
124 ASSERT_EQ(std::string("foo"), t.product);
132 std::string product = "test_product";
139 t.product = &product[0];
149 EXPECT_TRUE(t.MatchesTarget("product:" + product));
153 // Product, model, and device don't match without the prefix.
154 EXPECT_FALSE(t.MatchesTarget(product));