• Home
  • Raw
  • Download

Lines Matching refs:output_object

783                   OmahaResponse* output_object,  in ParsePackage()  argument
868 output_object->packages.push_back(std::move(out_package)); in ParsePackage()
877 OmahaResponse* output_object, in ParseResponse() argument
899 &output_object->poll_interval); in ParseResponse()
905 if (ParseInstallDate(parser_data, output_object) && in ParseResponse()
910 int remainder = output_object->install_date_days % 7; in ParseResponse()
912 output_object->install_date_days - remainder; in ParseResponse()
932 if (!ParseStatus(parser_data, output_object, completer)) in ParseResponse()
935 if (!ParseParams(parser_data, output_object, completer)) in ParseResponse()
941 if (!ParsePackage(&app, output_object, completer)) in ParseResponse()
948 OmahaResponse* output_object, in ParseStatus() argument
950 output_object->update_exists = false; in ParseStatus()
956 output_object->update_exists = false; in ParseStatus()
965 output_object->update_exists = true; in ParseStatus()
973 if (!output_object->update_exists) { in ParseStatus()
974 SetOutputObject(*output_object); in ParseStatus()
978 return output_object->update_exists; in ParseStatus()
982 OmahaResponse* output_object, in ParseParams() argument
986 if (!app.manifest_version.empty() && output_object->version.empty()) in ParseParams()
987 output_object->version = app.manifest_version; in ParseParams()
991 if (output_object->version.empty()) { in ParseParams()
998 << output_object->version; in ParseParams()
1007 output_object->more_info_url = attrs[kTagMoreInfo]; in ParseParams()
1008 output_object->prompt = ParseBool(attrs[kTagPrompt]); in ParseParams()
1009 output_object->deadline = attrs[kTagDeadline]; in ParseParams()
1010 output_object->max_days_to_scatter = ParseInt(attrs[kTagMaxDaysToScatter]); in ParseParams()
1011 output_object->disable_p2p_for_downloading = in ParseParams()
1013 output_object->disable_p2p_for_sharing = in ParseParams()
1015 output_object->public_key_rsa = attrs[kTagPublicKeyRsa]; in ParseParams()
1018 if (!base::StringToUint(max, &output_object->max_failure_count_per_url)) in ParseParams()
1019 output_object->max_failure_count_per_url = kDefaultMaxFailureCountPerUrl; in ParseParams()
1021 output_object->disable_payload_backoff = in ParseParams()
1097 OmahaResponse output_object; in TransferComplete() local
1098 if (!ParseResponse(&parser_data, &output_object, &completer)) in TransferComplete()
1100 output_object.update_exists = true; in TransferComplete()
1101 SetOutputObject(output_object); in TransferComplete()
1103 if (ShouldIgnoreUpdate(output_object)) { in TransferComplete()
1104 output_object.update_exists = false; in TransferComplete()
1110 if (output_object.disable_p2p_for_downloading) { in TransferComplete()
1115 if (output_object.disable_p2p_for_sharing) { in TransferComplete()
1127 payload_state->SetResponse(output_object); in TransferComplete()
1150 LookupPayloadViaP2P(output_object); in TransferComplete()
1158 OmahaResponse& output_object = const_cast<OmahaResponse&>(GetOutputObject()); in CompleteProcessing() local
1163 output_object.deadline.empty() && in CompleteProcessing()
1165 output_object.update_exists = false; in CompleteProcessing()
1171 if (ShouldDeferDownload(&output_object)) { in CompleteProcessing()
1172 output_object.update_exists = false; in CompleteProcessing()
1179 output_object.update_exists = false; in CompleteProcessing()
1253 bool OmahaRequestAction::ShouldDeferDownload(OmahaResponse* output_object) { in ShouldDeferDownload() argument
1280 switch (IsWallClockBasedWaitingSatisfied(output_object)) { in ShouldDeferDownload()
1311 OmahaResponse* output_object) { in IsWallClockBasedWaitingSatisfied() argument
1358 TimeDelta::FromDays(output_object->max_days_to_scatter); in IsWallClockBasedWaitingSatisfied()
1367 if (!output_object->deadline.empty()) { in IsWallClockBasedWaitingSatisfied()
1470 OmahaResponse* output_object) { in ParseInstallDate() argument
1479 output_object->install_date_days = elapsed_days; in ParseInstallDate()