/build/make/tools/releasetools/ |
D | apex_utils.py | 57 …def __init__(self, apex_path, key_passwords, codename_to_api_level_map, avbtool=None, sign_tool=No… argument 68 self.avbtool = avbtool if avbtool else "avbtool" 156 cmd = [self.sign_tool, '--avbtool', self.avbtool] 220 def SignApexPayload(avbtool, payload_file, payload_key_path, payload_key_name, argument 224 cmd = [avbtool, 'add_hashtree_footer', 246 VerifyApexPayload(avbtool, payload_file, payload_key_path, no_hashtree) 249 def VerifyApexPayload(avbtool, payload_file, payload_key, no_hashtree=False): argument 251 cmd = [avbtool, 'verify_image', '--image', payload_file, 263 def ParseApexPayloadInfo(avbtool, payload_path): argument 280 cmd = [avbtool, 'info_image', '--image', payload_path] [all …]
|
D | verity_utils.py | 143 def __init__(self, partition_name, partition_size, footer_type, avbtool, argument 149 self.avbtool = avbtool 244 cmd = [self.avbtool, add_footer, "--partition_size", 272 cmd = [self.avbtool, add_footer, 321 def CalculateVbmetaDigest(extracted_dir, avbtool): argument 340 cmd = [avbtool, "calculate_vbmeta_digest", "--image",
|
D | sign_apex.py | 61 def SignApexFile(avbtool, apex_file, payload_key, container_key, no_hashtree, argument 68 avbtool,
|
D | test_utils.py | 22 import avbtool 97 avb = avbtool.AvbTool() 107 avb = avbtool.AvbTool()
|
D | add_img_to_target_files.py | 53 import avbtool 91 def ParseAvbFooter(img_path) -> avbtool.AvbFooter: 93 fp.seek(-avbtool.AvbFooter.SIZE, os.SEEK_END) 94 data = fp.read(avbtool.AvbFooter.SIZE) 95 return avbtool.AvbFooter(data) 474 avbtool = OPTIONS.info_dict["avb_avbtool"] 477 cmd = [avbtool, "add_hash_footer", "--image", img.name, 510 avbtool = OPTIONS.info_dict["avb_avbtool"] 513 cmd = [avbtool, "add_hash_footer", "--image", img.name, 866 avbtool = OPTIONS.info_dict["avb_avbtool"] [all …]
|
D | sign_target_files_apks.py | 877 def GetAvbInfo(avbtool, image_name): argument 880 avbtool, 'info_image', 894 avbtool = misc_info['avb_avbtool'] 895 info = GetAvbInfo(avbtool, image.name) 899 cmd = [avbtool, 'add_hashtree_footer', 924 new_info = GetAvbInfo(avbtool, image.name)
|
D | common.py | 1604 avbtool = OPTIONS.info_dict["avb_avbtool"] 1605 cmd = [avbtool, "make_vbmeta_image", "--output", image_path] 1828 avbtool = info_dict["avb_avbtool"] 1833 cmd = [avbtool, "add_hash_footer", "--image", img.name, 1873 avbtool = info_dict["avb_avbtool"] 1879 cmd = [avbtool, "add_hash_footer", "--image", image_path, 2065 avbtool = info_dict["avb_avbtool"] 2067 cmd = [avbtool, "add_hash_footer", "--image", img.name, 3750 def ExtractAvbPublicKey(avbtool, key): argument 3762 [avbtool, 'extract_public_key', "--key", key, "--output", output])
|
D | Android.bp | 241 // `avbtool` is not here, as the script always uses the one from info_dict['avb_avbtool'].
|
/build/bazel/rules/partitions/ |
D | BUILD | 7 avbtool = "//external/avb:avbtool",
|
D | toolchain.bzl | 22 "avbtool", 39 avbtool = ctx.attr.avbtool, 57 "avbtool": attr.label(cfg = "exec", executable = True, mandatory = True),
|
D | partition.bzl | 114 image_info_contents += "avb_avbtool=avbtool\n" 160 toolchain.avbtool[DefaultInfo].files_to_run,
|
/build/bazel/rules/apex/ |
D | toolchain.bzl | 19 "avbtool", 43 avbtool = ctx.attr.avbtool, 71 "avbtool": attr.label(cfg = "exec", executable = True, mandatory = True), 85 # soong_zip to compress APEX files. avbtool is also used in apex_compression tool
|
D | BUILD | 186 avbtool = "//external/avb:avbtool",
|
D | apex_aab.bzl | 112 def _sign_bundle(ctx, aapt2, avbtool, module_name, bundle_file, apex_info): 181 avbtool.files_to_run.executable, 229 avbtool.files_to_run.executable.dirname, 302 …signed_files = _sign_bundle(ctx, apex_toolchain.aapt2, apex_toolchain.avbtool, module_name, bundle…
|
D | apex.bzl | 497 avbtool_files = apex_toolchain.avbtool[DefaultInfo].files_to_run 635 avbtool_files = apex_toolchain.avbtool[DefaultInfo].files_to_run
|
/build/bazel/rules/ |
D | BUILD.bazel | 51 "//external/avb:avbtool",
|
/build/make/core/ |
D | config.mk | 678 AVBTOOL := $(HOST_OUT_EXECUTABLES)/avbtool$(HOST_EXECUTABLE_SUFFIX)
|
D | Makefile | 5567 avbtool \
|