Lines Matching refs:params_

281       params_(system_state->request_params()),  in OmahaRequestAction()
412 auto it = params_->dlc_apps_params().find(app.id); in StorePingReply()
413 if (it == params_->dlc_apps_params().end()) in StorePingReply()
457 params_, in PerformAction()
469 params_->interactive() ? "fg" : "bg"); in PerformAction()
470 http_fetcher_->SetHeader(kXGoogleUpdateAppId, params_->GetAppId()); in PerformAction()
478 LOG(INFO) << "Posting an Omaha request to " << params_->update_url(); in PerformAction()
480 http_fetcher_->BeginTransfer(params_->update_url()); in PerformAction()
762 if (app.id == params_->GetAppId()) { in ParseResponse()
783 params_->rollback_allowed_milestones(), parser_data, output_object); in ParseResponse()
798 bool can_exclude = !params_->is_install() && params_->IsDlcAppId(app.id); in ParseResponse()
815 if (params_->IsDlcAppId(app.id)) { in ParseStatus()
818 params_->SetDlcNoUpdate(app.id); in ParseStatus()
837 } else if (status.empty() && params_->is_install() && in ParseStatus()
838 params_->GetAppId() == app.id) { in ParseStatus()
860 if (app.id == params_->GetAppId()) { in ParseParams()
863 } else if (!params_->system_app_id().empty() && in ParseParams()
864 app.id == params_->system_app_id()) { in ParseParams()
868 } else if (params_->is_install() && in ParseParams()
869 app.manifest_version != params_->app_version()) { in ParseParams()
872 << params_->app_version() << ")"; in ParseParams()
878 if (params_->is_install()) { in ParseParams()
880 output_object->version = params_->app_version(); in ParseParams()
1175 if (params_->interactive()) { in ShouldDeferDownload()
1195 if (!params_->wall_clock_based_wait_enabled()) { in ShouldDeferDownload()
1252 << utils::FormatSecs(params_->waiting_period().InSeconds()) in IsWallClockBasedWaitingSatisfied()
1283 TimeDelta remaining_wait_time = params_->waiting_period() - elapsed_time; in IsWallClockBasedWaitingSatisfied()
1290 return params_->update_check_count_wait_enabled() in IsWallClockBasedWaitingSatisfied()
1319 base::RandInt(params_->min_update_checks_needed(), in IsUpdateCheckCountBasedWaitingSatisfied()
1320 params_->max_update_checks_allowed()); in IsUpdateCheckCountBasedWaitingSatisfied()
1342 update_check_count_value > params_->max_update_checks_allowed()) { in IsUpdateCheckCountBasedWaitingSatisfied()
1508 params_->app_version() != "ForcedUpdate") { in ShouldIgnoreUpdate()