Lines Matching refs:response
53 const OmahaResponse& response = GetInputObject();
54 if (!response.update_exists) {
66 LOG(ERROR) << "There are no suitable URLs in the response to use.";
72 install_plan_.version = response.version;
87 // Fill up the other properties based on the response.
88 install_plan_.payload_size = response.size;
89 install_plan_.payload_hash = response.hash;
90 install_plan_.metadata_size = response.metadata_size;
91 install_plan_.metadata_signature = response.metadata_signature;
92 install_plan_.public_key_rsa = response.public_key_rsa;
93 install_plan_.hash_checks_mandatory = AreHashChecksMandatory(response);
95 DeltaPerformer::CanResumeUpdate(system_state_->prefs(), response.hash);
104 kPrefsUpdateCheckResponseHash, response.hash))
105 << "Unable to save the update check response hash.";
107 install_plan_.payload_type = response.is_delta_payload
114 // The Omaha response doesn't include the channel name for this image, so we
141 response.deadline.data(),
142 response.deadline.size());
150 const OmahaResponse& response) {
167 if (!response.public_key_rsa.empty()) {
170 LOG(INFO) << "Mandating payload hash checks since Omaha Response "
180 // HTTP URL even if |response.payload_urls| contain only HTTPS URLs.
196 for (size_t i = 0; i < response.payload_urls.size(); i++) {
197 if (!base::StartsWith(response.payload_urls[i], "https://",
199 LOG(INFO) << "Mandating payload hash checks since Omaha response "
205 LOG(INFO) << "Waiving payload hash checks since Omaha response "