Home
last modified time | relevance | path

Searched refs:mutable_image_props_ (Results 1 – 3 of 3) sorted by relevance

/system/update_engine/cros/
Domaha_request_params.cc69 mutable_image_props_ = LoadMutableImageProperties(); in Init()
74 if (!IsValidChannel(mutable_image_props_.target_channel)) in Init()
75 mutable_image_props_.target_channel = image_props_.current_channel; in Init()
90 if (image_props_.current_channel == mutable_image_props_.target_channel) { in Init()
99 << mutable_image_props_.target_channel in Init()
101 << utils::ToString(mutable_image_props_.is_powerwash_allowed); in Init()
172 << mutable_image_props_.target_channel in SetTargetChannel()
187 mutable_image_props_ = new_props; in SetTargetChannel()
192 if (download_channel_ != mutable_image_props_.target_channel) { in UpdateDownloadChannel()
193 download_channel_ = mutable_image_props_.target_channel; in UpdateDownloadChannel()
[all …]
Domaha_request_params_unittest.cc113 EXPECT_FALSE(params.mutable_image_props_.is_powerwash_allowed); in TEST_F()
118 EXPECT_FALSE(params_.mutable_image_props_.is_powerwash_allowed); in TEST_F()
127 EXPECT_TRUE(params.mutable_image_props_.is_powerwash_allowed); in TEST_F()
132 EXPECT_TRUE(params_.mutable_image_props_.is_powerwash_allowed); in TEST_F()
147 EXPECT_FALSE(params.mutable_image_props_.is_powerwash_allowed); in TEST_F()
152 EXPECT_FALSE(params_.mutable_image_props_.is_powerwash_allowed); in TEST_F()
243 params_.mutable_image_props_.is_powerwash_allowed = false; in TEST_F()
245 params_.mutable_image_props_.is_powerwash_allowed = true; in TEST_F()
Domaha_request_params.h117 return mutable_image_props_.target_channel; in target_channel()
281 mutable_image_props_.target_channel = channel; in set_target_channel()
290 mutable_image_props_.is_powerwash_allowed = powerwash_allowed; in set_is_powerwash_allowed()
293 return mutable_image_props_.is_powerwash_allowed; in is_powerwash_allowed()
329 MutableImageProperties mutable_image_props_; variable