Home
last modified time | relevance | path

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

/system/update_engine/
Dimage_properties_android.cc78 std::string current_channel; in LoadImageProperties() local
80 !system_state->prefs()->GetString(current_channel_key, &current_channel)) in LoadImageProperties()
81 current_channel = "stable-channel"; in LoadImageProperties()
82 result.current_channel = current_channel; in LoadImageProperties()
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()
92 if (image_props_.current_channel == mutable_image_props_.target_channel) { in Init()
146 << ". Current channel = " << image_props_.current_channel in SetTargetChannel()
209 int current_channel_index = GetChannelIndex(image_props_.current_channel); in to_more_stable_channel()
Dweave_service.cc87 string current_channel; in UpdateWeaveState() local
93 &current_channel, in UpdateWeaveState()
102 state.SetString("_updater.currentChannel", current_channel); in UpdateWeaveState()
Domaha_request_params.h93 image_props_.current_channel = in_target_channel; in OmahaRequestParams()
119 inline std::string current_channel() const { in current_channel() function
120 return image_props_.current_channel; in current_channel()
231 image_props_.current_channel = channel; in set_current_channel()
Dweave_service_interface.h50 std::string* current_channel,
Dimage_properties.h44 std::string current_channel; member
Dupdate_engine_client.cc393 string current_channel; in ProcessFlags() local
396 if (!client_->GetChannel(&current_channel)) { in ProcessFlags()
406 LOG(INFO) << "Current Channel: " << current_channel; in ProcessFlags()
Dimage_properties_chromeos.cc93 result.current_channel = GetStringWithDefault( in LoadImageProperties()
Domaha_response_handler_action_unittest.cc349 EXPECT_EQ("canary-channel", params.current_channel()); in TEST_F()
390 EXPECT_EQ("stable-channel", params.current_channel()); in TEST_F()
Dcommon_service.cc185 (in_get_current_channel ? rp->current_channel() : rp->target_channel()); in GetChannel()
Dupdate_attempter.h110 std::string* current_channel,
Dupdate_attempter.cc1122 string* current_channel, in GetWeaveState() argument
1128 *current_channel = rp->current_channel(); in GetWeaveState()
Domaha_request_action.cc230 if (params->current_channel() != download_channel) { in GetAppXml()
232 params->current_channel(), "") + "\" "; in GetAppXml()
Domaha_request_action_unittest.cc1799 EXPECT_EQ("canary-channel", params.current_channel()); in TEST_F()
1846 EXPECT_EQ("stable-channel", params.current_channel()); in TEST_F()
/system/update_engine/update_manager/
Dreal_updater_provider.cc267 string channel = request_params->current_channel(); in GetValue()