Home
last modified time | relevance | path

Searched refs:expected_hash (Results 1 – 9 of 9) sorted by relevance

/external/autotest/site_utils/suite_scheduler/
Dbuild_event_unittest.py122 expected_hash = 'deadbeef'
125 self.mv.GetCheckpoint().AndReturn(expected_hash)
126 self.mv.AnyManifestsSinceRev(expected_hash).AndReturn(True)
138 expected_hash = 'deadbeef'
149 self.mv.GetCheckpoint().AndReturn(expected_hash)
152 self.mv.AnyManifestsSinceRev(expected_hash).AndReturn(True)
153 self.mv.ManifestsSinceRev(expected_hash,
/external/skia/platform_tools/android/bin/
Ddownload_utils.py47 def __init__(self, download_url, expected_hash, actual_hash): argument
49 self.expected_hash = expected_hash
54 self.actual_hash, self.expected_hash, self.download_url)
320 raise HashError(actual_hash=tar_hash, expected_hash=hash_val,
/external/v8/tools/
Dfind-commit-for-patch.py63 expected_hash = files[filename]
64 if actual_hash.startswith(expected_hash): matched_files += 1
/external/vboot_reference/scripts/image_signing/
Dsign_official_build.sh563 expected_hash=$(get_hash_from_config "${new_kernel_config}")
566 if [ -z "${expected_hash}" ] || [ -z "${got_hash}" ]; then
571 if [ ! "${got_hash}" = "${expected_hash}" ]; then
574 Expected: ${expected_hash}
579 echo "PASS: RootFS hash is correct (${expected_hash})"
/external/chromium-trace/catapult/catapult_base/catapult_base/
Dcloud_storage.py328 expected_hash = ReadHash(hash_path)
329 if os.path.exists(file_path) and CalculateHash(file_path) == expected_hash:
331 _GetLocked(bucket, expected_hash, file_path)
/external/vboot_reference/firmware/lib/
Dvboot_api_kernel.c645 uint8_t expected_hash[SHA256_DIGEST_SIZE]; in VbEcSoftwareSync() local
792 internal_SHA256(expected, expected_size, expected_hash); in VbEcSoftwareSync()
795 VBDEBUG(("%02x", expected_hash[i])); in VbEcSoftwareSync()
804 need_update = SafeMemcmp(ec_hash, expected_hash, in VbEcSoftwareSync()
807 SafeMemcmp(rw_hash, expected_hash, SHA256_DIGEST_SIZE)) { in VbEcSoftwareSync()
/external/autotest/client/virt/
Dkvm_vm.py647 expected_hash = cdrom_params.get("md5sum_1m")
653 expected_hash = cdrom_params.get("md5sum")
659 expected_hash = cdrom_params.get("sha1sum")
662 if actual_hash == expected_hash:
666 expected_hash)
Dvirt_vm.py26 self.expected_hash = expected
30 (self.actual_hash, self.expected_hash))
/external/autotest/client/bin/
Dbase_utils.py140 def unmap_url_cache(cachedir, url, expected_hash, method="md5"): argument
165 while not file_hash == expected_hash:
168 if file_hash == expected_hash: