HomeSort by relevance Sort by last modified time
    Searched refs:image_props_ (Results 1 - 3 of 3) sorted by null

  /system/update_engine/
omaha_request_params.h 89 image_props_.board = in_os_board;
90 image_props_.product_id = in_app_id;
91 image_props_.canary_product_id = in_app_id;
92 image_props_.version = in_app_version;
93 image_props_.current_channel = in_target_channel;
104 inline std::string os_board() const { return image_props_.board; }
106 return image_props_.build_fingerprint;
108 inline std::string os_build_type() const { return image_props_.build_type; }
109 inline std::string board_app_id() const { return image_props_.product_id; }
111 return image_props_.canary_product_id
298 ImageProperties image_props_; member in class:chromeos_update_engine::OmahaRequestParams
    [all...]
omaha_request_params.cc 67 image_props_ = LoadImageProperties(system_state_);
71 if (!IsValidChannel(image_props_.current_channel))
72 image_props_.current_channel = "stable-channel";
74 mutable_image_props_.target_channel = image_props_.current_channel;
77 LOG(INFO) << "Running from channel " << image_props_.current_channel;
80 if (!image_props_.system_version.empty())
81 os_version_ = image_props_.system_version;
85 image_props_.version = in_app_version;
87 os_sp_ = image_props_.version + "_" + GetMachineType();
95 if (image_props_.current_channel == mutable_image_props_.target_channel)
    [all...]
omaha_request_params_unittest.cc 148 params.image_props_.allow_arbitrary_channels = false;
171 params_.image_props_.allow_arbitrary_channels = true;
233 params_.image_props_.current_channel = "canary-channel";
236 params_.image_props_.current_channel = "stable-channel";
246 params_.image_props_.allow_arbitrary_channels = true;
247 params_.image_props_.current_channel = "foo-channel";
250 params_.image_props_.allow_arbitrary_channels = false;
251 params_.image_props_.current_channel = "canary-channel";

Completed in 73 milliseconds