Lines Matching refs:params

107                   OmahaRequestParams* params,
121 XmlEncodeWithDefault(params->target_version_prefix(), "").c_str());
202 OmahaRequestParams* params,
209 string app_body = GetAppBody(event, params, ping_only, include_ping,
217 if (params->to_more_stable_channel() && params->is_powerwash_allowed()) {
221 XmlEncodeWithDefault(params->app_version(), "0.0.0.0") + "\" ";
224 XmlEncodeWithDefault(params->app_version(), "0.0.0.0") + "\" ";
227 string download_channel = params->download_channel();
230 if (params->current_channel() != download_channel) {
232 params->current_channel(), "") + "\" ";
235 string delta_okay_str = params->delta_okay() ? "true" : "false";
254 "appid=\"" + XmlEncodeWithDefault(params->GetAppId(), "") + "\" " +
258 "lang=\"" + XmlEncodeWithDefault(params->app_lang(), "en-US") + "\" " +
259 "board=\"" + XmlEncodeWithDefault(params->os_board(), "") + "\" " +
260 "hardware_class=\"" + XmlEncodeWithDefault(params->hwid(), "") + "\" " +
262 "fw_version=\"" + XmlEncodeWithDefault(params->fw_version(), "") + "\" " +
263 "ec_version=\"" + XmlEncodeWithDefault(params->ec_version(), "") + "\" " +
274 string GetOsXml(OmahaRequestParams* params) {
276 "version=\"" + XmlEncodeWithDefault(params->os_version(), "") + "\" " +
277 "platform=\"" + XmlEncodeWithDefault(params->os_platform(), "") + "\" " +
278 "sp=\"" + XmlEncodeWithDefault(params->os_sp(), "") + "\">"
286 OmahaRequestParams* params,
293 string os_xml = GetOsXml(params);
294 string app_xml = GetAppXml(event, params, ping_only, include_ping,
299 (params->interactive() ? "ondemandupdate" : "scheduler"));