Searched refs:hash_file (Results 1 – 13 of 13) sorted by relevance
/external/autotest/client/tools/ |
D | cd_hash.py | 41 logging.info("md5 (1m): %s", utils.hash_file(filename, 1024*1024, 43 logging.info("sha1 (1m): %s", utils.hash_file(filename, 1024*1024, 45 logging.info("md5 (full): %s", utils.hash_file(filename, method="md5")) 46 logging.info("sha1 (full): %s", utils.hash_file(filename,
|
/external/autotest/client/cros/ |
D | verity_utils.py | 105 if self.hash_file is not None: 106 os.remove(self.hash_file) 107 self.hash_file = None 114 self.hash_file = None 147 self.hash_file)) 155 f.write(utils.read_file(self.hash_file)) 191 self.hash_file = os.tempnam(tmpdir, '%s.hash.' % self.target_name)
|
/external/autotest/client/tests/kvm/tests/ |
D | vmstop.py | 68 md5_save1 = utils.hash_file(save1) 69 md5_save2 = utils.hash_file(save2)
|
D | migration_with_file_transfer.py | 72 orig_hash = client_utils.hash_file(host_path) 73 returned_hash = client_utils.hash_file(host_path_returned)
|
/external/autotest/client/virt/tests/ |
D | file_transfer.py | 70 if (utils.hash_file(host_path, method="md5") != 71 utils.hash_file(host_path2, method="md5")):
|
D | ethtool.py | 80 host_result = utils.hash_file(name, method="md5")
|
/external/autotest/client/site_tests/platform_DMVerityCorruption/ |
D | platform_DMVerityCorruption.py | 39 hash_blocks = (os.path.getsize(self.verity.hash_file) /
|
/external/autotest/client/site_tests/platform_DMVerityBitCorruption/ |
D | platform_DMVerityBitCorruption.py | 59 hash_blocks = (os.path.getsize(self.verity.hash_file) /
|
/external/autotest/client/virt/ |
D | virt_test_utils.py | 250 md5_save1 = utils.hash_file(save1) 251 md5_save2 = utils.hash_file(save2) 458 local_hash = utils.hash_file(local_path)
|
D | kvm_vm.py | 646 actual_hash = utils.hash_file(iso, 1048576, method="md5") 652 actual_hash = utils.hash_file(iso, method="md5") 658 actual_hash = utils.hash_file(iso, method="sha1") 1263 md5_save1 = utils.hash_file(save1) 1264 md5_save2 = utils.hash_file(save2)
|
D | virt_env_process.py | 447 hash = utils.hash_file(temp_filename)
|
D | virt_utils.py | 1195 hash_file = open(hash_path, 'r') 1196 for line in hash_file.readlines():
|
/external/autotest/client/bin/ |
D | base_utils.py | 101 def hash_file(filename, size=None, method="md5"): function 167 file_hash = hash_file(file_local_path, method)
|