Lines Matching refs:excluder_
34 ExcluderChromeOS excluder_; member in chromeos_update_engine::ExcluderChromeOSTest
38 EXPECT_FALSE(excluder_.IsExcluded(kFakeHash)); in TEST_F()
39 EXPECT_TRUE(excluder_.Exclude(kFakeHash)); in TEST_F()
40 EXPECT_TRUE(excluder_.IsExcluded(kFakeHash)); in TEST_F()
44 EXPECT_TRUE(excluder_.Exclude("abc")); in TEST_F()
45 EXPECT_TRUE(excluder_.Exclude(kFakeHash)); in TEST_F()
46 EXPECT_TRUE(excluder_.IsExcluded("abc")); in TEST_F()
47 EXPECT_TRUE(excluder_.IsExcluded(kFakeHash)); in TEST_F()
49 EXPECT_TRUE(excluder_.Reset()); in TEST_F()
50 EXPECT_FALSE(excluder_.IsExcluded("abc")); in TEST_F()
51 EXPECT_FALSE(excluder_.IsExcluded(kFakeHash)); in TEST_F()