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()
99 if (image_props_.current_channel == mutable_image_props_.target_channel) { in Init()
151 << ". Current channel = " << image_props_.current_channel in SetTargetChannel()
228 int current_channel_index = GetChannelIndex(image_props_.current_channel); in ToMoreStableChannel()
239 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.cc208 string current_channel; in LoadImageProperties() local
210 !system_state->prefs()->GetString(current_channel_key, &current_channel)) in LoadImageProperties()
211 current_channel = GetTargetChannel(); in LoadImageProperties()
212 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_unittest.cc230 params_.image_props_.current_channel = "canary-channel"; in TEST_F()
233 params_.image_props_.current_channel = "stable-channel"; in TEST_F()
244 params_.image_props_.current_channel = "foo-channel"; in TEST_F()
248 params_.image_props_.current_channel = "canary-channel"; in TEST_F()
Dimage_properties.h59 std::string current_channel; member
Domaha_request_params.h102 inline std::string current_channel() const { in current_channel() function
103 return image_props_.current_channel; in current_channel()
223 image_props_.current_channel = channel; in set_current_channel()
Dupdate_engine_client.cc471 string current_channel; in ProcessFlags() local
474 if (!client_->GetChannel(&current_channel)) { in ProcessFlags()
484 LOG(INFO) << "Current Channel: " << current_channel; in ProcessFlags()
Dimage_properties_chromeos.cc94 result.current_channel = GetStringWithDefault( in LoadImageProperties()
Dcommon_service.cc208 (in_get_current_channel ? rp->current_channel() : rp->target_channel()); in GetChannel()
Domaha_request_action.cc306 if (params->current_channel() != download_channel) { in GetAppXml()
308 XmlEncodeWithDefault(params->current_channel(), "") + "\" "; in GetAppXml()
/system/update_engine/update_manager/
Dreal_updater_provider.cc269 string channel = request_params->current_channel(); in GetValue()