Home
last modified time | relevance | path

Searched refs:current_channel (Results 1 – 12 of 12) sorted by relevance

/system/update_engine/
Domaha_request_params.cc71 if (!IsValidChannel(image_props_.current_channel)) in Init()
72 image_props_.current_channel = "stable-channel"; in Init()
74 mutable_image_props_.target_channel = image_props_.current_channel; in Init()
77 LOG(INFO) << "Running from channel " << image_props_.current_channel; in Init()
95 if (image_props_.current_channel == mutable_image_props_.target_channel) { in Init()
149 << ". Current channel = " << image_props_.current_channel in SetTargetChannel()
226 int current_channel_index = GetChannelIndex(image_props_.current_channel); in ToMoreStableChannel()
237 return image_props_.current_channel != download_channel_; in ShouldPowerwash()
Dimage_properties_chromeos_unittest.cc68 EXPECT_EQ("dev-channel", props.current_channel); in TEST_F()
108 EXPECT_EQ("dev-channel", props.current_channel); in TEST_F()
130 EXPECT_EQ("dev-channel", props.current_channel); in TEST_F()
145 EXPECT_EQ("stable-channel", props.current_channel); in TEST_F()
157 EXPECT_EQ("canary-channel", props.current_channel); in TEST_F()
168 EXPECT_EQ("stable-channel", props.current_channel); in TEST_F()
Dimage_properties_android.cc204 string current_channel; in LoadImageProperties() local
206 !system_state->prefs()->GetString(current_channel_key, &current_channel)) in LoadImageProperties()
207 current_channel = GetTargetChannel(); in LoadImageProperties()
208 result.current_channel = current_channel; in LoadImageProperties()
Dimage_properties_android_unittest.cc73 EXPECT_EQ("stable-channel", props.current_channel); in TEST_F()
102 EXPECT_EQ("unittest-channel", props.current_channel); in TEST_F()
108 EXPECT_EQ("stable-channel", props.current_channel); in TEST_F()
Domaha_request_params.h93 image_props_.current_channel = in_target_channel; in OmahaRequestParams()
140 inline std::string current_channel() const { in current_channel() function
141 return image_props_.current_channel; in current_channel()
247 image_props_.current_channel = channel; in set_current_channel()
Domaha_request_params_unittest.cc233 params_.image_props_.current_channel = "canary-channel"; in TEST_F()
236 params_.image_props_.current_channel = "stable-channel"; in TEST_F()
247 params_.image_props_.current_channel = "foo-channel"; in TEST_F()
251 params_.image_props_.current_channel = "canary-channel"; in TEST_F()
Dimage_properties.h59 std::string current_channel; member
Dupdate_engine_client.cc442 string current_channel; in ProcessFlags() local
445 if (!client_->GetChannel(&current_channel)) { in ProcessFlags()
455 LOG(INFO) << "Current Channel: " << current_channel; in ProcessFlags()
Dimage_properties_chromeos.cc94 result.current_channel = GetStringWithDefault( in LoadImageProperties()
Dcommon_service.cc194 (in_get_current_channel ? rp->current_channel() : rp->target_channel()); in GetChannel()
Domaha_request_action.cc255 if (params->current_channel() != download_channel) { in GetAppXml()
257 params->current_channel(), "") + "\" "; in GetAppXml()
/system/update_engine/update_manager/
Dreal_updater_provider.cc270 string channel = request_params->current_channel(); in GetValue()