/build/make/tools/releasetools/ |
D | target_files_diff.py | 136 def diff(name, file1, file2, out_file): argument 149 print("%s: Binary files differ" % name, file=out_file) 152 print("%s: %s" % (name, line), file=out_file) 154 def recursiveDiff(prefix, dir1, dir2, out_file): argument 175 file=out_file) 178 print("%s: File types differ, skipping compare" % name, file=out_file) 187 print("%s: File types differ, skipping compare" % name, file=out_file) 192 (name, stat1.st_mode, stat2.st_mode), file=out_file) 195 recursiveDiff(name, name1, name2, out_file) 197 diff(name, name1, name2, out_file) [all …]
|
D | build_image.py | 231 def BuildImageMkfs(in_dir, prop_dict, out_file, target_out, fs_config): argument 259 build_command.extend([in_dir, out_file, fs_type, 300 build_command.extend([in_dir, out_file]) 322 build_command.extend([out_file, prop_dict["image_size"]]) 371 unsparse_image = UnsparseImage(out_file, replace=False) 383 def BuildImage(in_dir, prop_dict, out_file, target_out=None): argument 434 BuildImageMkfs(in_dir, prop_dict, out_file, target_out, fs_config) 438 fs_dict = GetFilesystemCharacteristics(out_file, sparse_image) 439 os.remove(out_file) 474 "Allocating %d Inodes for %s.", inodes, out_file) [all …]
|
D | verity_utils.py | 134 with open(target, 'ab') as out_file, \ 137 out_file.write(line) 229 def PadSparseImage(self, out_file): argument 233 def Build(self, out_file): argument 304 def Build(self, out_file): argument 322 root_hash, salt = BuildVerityTree(out_file, verity_image_path) 342 out_file, verity_image_path, verity_fec_path, padding_size) 346 out_file, verity_image_path, "Failed to append verity data") 348 def PadSparseImage(self, out_file): argument 349 sparse_image_size = GetSimgSize(out_file) [all …]
|
D | sign_target_files_apks.py | 394 open(uncompressed.name, "wb") as out_file: 395 shutil.copyfileobj(in_file, out_file) 434 gzip.open(compressed.name, "wb") as out_file: 435 shutil.copyfileobj(in_file, out_file)
|
D | sign_target_files_apks | 394 open(uncompressed.name, "wb") as out_file: 395 shutil.copyfileobj(in_file, out_file) 434 gzip.open(compressed.name, "wb") as out_file: 435 shutil.copyfileobj(in_file, out_file)
|
D | ota_from_target_files | 350 out_file = common.MakeTempFile(prefix="signed-", suffix=".bin") 351 cmd = [self.signer] + self.signer_args + ['-in', in_file, '-out', out_file] 353 return out_file 2253 with open(OPTIONS.log_diff, 'w') as out_file: 2255 '', source_dir, target_dir, out_file)
|
D | ota_from_target_files.py | 350 out_file = common.MakeTempFile(prefix="signed-", suffix=".bin") 351 cmd = [self.signer] + self.signer_args + ['-in', in_file, '-out', out_file] 353 return out_file 2253 with open(OPTIONS.log_diff, 'w') as out_file: 2255 '', source_dir, target_dir, out_file)
|
D | common.py | 1550 open(out_filename, "wb") as out_file: 1551 shutil.copyfileobj(in_file, out_file)
|
/build/make/tools/fs_config/ |
D | Android.mk | 106 --out_file $@ \ 131 --out_file $@ \ 156 --out_file $@ \ 180 --out_file $@ \ 207 --out_file $@ \ 231 --out_file $@ \ 258 --out_file $@ \ 282 --out_file $@ \ 309 --out_file $@ \ 333 --out_file $@ \ [all …]
|
D | fs_config_generator.py | 985 def _to_fs_entry(self, fs_config, out_file): argument 1055 out_file.write(length_binary) 1056 out_file.write(mode_binary) 1057 out_file.write(user_binary) 1058 out_file.write(group_binary) 1059 out_file.write(caps_binary) 1060 out_file.write(path_binary)
|
/build/make/tools/fs_config/end_to_end_test/ |
D | run_test.sh | 9 --out_file result_system_fs_config_files \ 21 --out_file result_system_fs_config_dirs \ 32 --out_file result_vendor_fs_config_files \ 43 --out_file result_vendor_fs_config_dirs \ 54 --out_file result_product_fs_config_files \ 65 --out_file result_product_fs_config_dirs \
|