Home
last modified time | relevance | path

Searched refs:image_props_ (Results 1 – 2 of 2) sorted by relevance

/system/update_engine/
Domaha_request_params.cc67 image_props_ = LoadImageProperties(system_state_); in Init()
71 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()
82 image_props_.version = in_app_version; in Init()
84 os_sp_ = image_props_.version + "_" + GetMachineType(); in Init()
92 if (image_props_.current_channel == mutable_image_props_.target_channel) { in Init()
112 update_url_ = image_props_.omaha_url; in Init()
123 update_url_ == image_props_.omaha_url); in IsUpdateUrlOfficial()
[all …]
Domaha_request_params.h89 image_props_.board = in_os_board; in OmahaRequestParams()
90 image_props_.product_id = in_app_id; in OmahaRequestParams()
91 image_props_.canary_product_id = in_app_id; in OmahaRequestParams()
92 image_props_.version = in_app_version; in OmahaRequestParams()
93 image_props_.current_channel = in_target_channel; in OmahaRequestParams()
104 inline std::string os_board() const { return image_props_.board; } in os_board()
105 inline std::string board_app_id() const { return image_props_.product_id; } in board_app_id()
107 return image_props_.canary_product_id; in canary_app_id()
115 image_props_.version = version; in set_app_version()
117 inline std::string app_version() const { return image_props_.version; } in app_version()
[all …]