/build/tools/releasetools/ |
D | ota_from_target_files | 104 OPTIONS = common.OPTIONS variable 105 OPTIONS.package_key = None 106 OPTIONS.incremental_source = None 107 OPTIONS.verify = False 108 OPTIONS.require_verbatim = set() 109 OPTIONS.prohibit_verbatim = set(("system/build.prop",)) 110 OPTIONS.patch_threshold = 0.95 111 OPTIONS.wipe_user_data = False 112 OPTIONS.omit_prereq = False 113 OPTIONS.extra_script = None [all …]
|
D | ota_from_target_files.py | 104 OPTIONS = common.OPTIONS variable 105 OPTIONS.package_key = None 106 OPTIONS.incremental_source = None 107 OPTIONS.verify = False 108 OPTIONS.require_verbatim = set() 109 OPTIONS.prohibit_verbatim = set(("system/build.prop",)) 110 OPTIONS.patch_threshold = 0.95 111 OPTIONS.wipe_user_data = False 112 OPTIONS.omit_prereq = False 113 OPTIONS.extra_script = None [all …]
|
D | add_img_to_target_files | 39 OPTIONS = common.OPTIONS variable 41 OPTIONS.add_missing = False 42 OPTIONS.rebuild_recovery = False 48 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "system.img") 54 ofile = open(os.path.join(OPTIONS.input_tmp, "SYSTEM", fn), "w") 58 if OPTIONS.rebuild_recovery: 60 common.MakeRecoveryPatch(OPTIONS.input_tmp, output_sink, recovery_img, 61 boot_img, info_dict=OPTIONS.info_dict) 64 imgname = BuildSystem(OPTIONS.input_tmp, OPTIONS.info_dict, 80 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "vendor.img") [all …]
|
D | add_img_to_target_files.py | 39 OPTIONS = common.OPTIONS variable 41 OPTIONS.add_missing = False 42 OPTIONS.rebuild_recovery = False 48 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "system.img") 54 ofile = open(os.path.join(OPTIONS.input_tmp, "SYSTEM", fn), "w") 58 if OPTIONS.rebuild_recovery: 60 common.MakeRecoveryPatch(OPTIONS.input_tmp, output_sink, recovery_img, 61 boot_img, info_dict=OPTIONS.info_dict) 64 imgname = BuildSystem(OPTIONS.input_tmp, OPTIONS.info_dict, 80 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "vendor.img") [all …]
|
D | sign_target_files_apks | 88 OPTIONS = common.OPTIONS variable 90 OPTIONS.extra_apks = {} 91 OPTIONS.key_map = {} 92 OPTIONS.replace_ota_keys = False 93 OPTIONS.replace_verity_public_key = False 94 OPTIONS.replace_verity_private_key = False 95 OPTIONS.tag_changes = ("-test-keys", "-dev-keys", "+release-keys") 102 certmap[apk] = OPTIONS.key_map.get(cert, cert) 105 for apk, cert in OPTIONS.extra_apks.iteritems(): 108 certmap[apk] = OPTIONS.key_map.get(cert, cert) [all …]
|
D | sign_target_files_apks.py | 88 OPTIONS = common.OPTIONS variable 90 OPTIONS.extra_apks = {} 91 OPTIONS.key_map = {} 92 OPTIONS.replace_ota_keys = False 93 OPTIONS.replace_verity_public_key = False 94 OPTIONS.replace_verity_private_key = False 95 OPTIONS.tag_changes = ("-test-keys", "-dev-keys", "+release-keys") 102 certmap[apk] = OPTIONS.key_map.get(cert, cert) 105 for apk, cert in OPTIONS.extra_apks.iteritems(): 108 certmap[apk] = OPTIONS.key_map.get(cert, cert) [all …]
|
D | img_from_target_files | 41 OPTIONS = common.OPTIONS variable 47 output_zip, os.path.join(OPTIONS.input_tmp, "OTA", "android-info.txt"), 72 OPTIONS.input_tmp, input_zip = common.UnzipTemp(args[0]) 78 images_path = os.path.join(OPTIONS.input_tmp, "IMAGES") 98 OPTIONS.info_dict = common.LoadInfoDict(input_zip) 105 if "selinux_fc" in OPTIONS.info_dict: 106 OPTIONS.info_dict["selinux_fc"] = os.path.join( 107 OPTIONS.input_tmp, "BOOT", "RAMDISK", "file_contexts") 110 "boot.img", "boot.img", OPTIONS.input_tmp, "BOOT") 114 "recovery.img", "recovery.img", OPTIONS.input_tmp, "RECOVERY") [all …]
|
D | img_from_target_files.py | 41 OPTIONS = common.OPTIONS variable 47 output_zip, os.path.join(OPTIONS.input_tmp, "OTA", "android-info.txt"), 72 OPTIONS.input_tmp, input_zip = common.UnzipTemp(args[0]) 78 images_path = os.path.join(OPTIONS.input_tmp, "IMAGES") 98 OPTIONS.info_dict = common.LoadInfoDict(input_zip) 105 if "selinux_fc" in OPTIONS.info_dict: 106 OPTIONS.info_dict["selinux_fc"] = os.path.join( 107 OPTIONS.input_tmp, "BOOT", "RAMDISK", "file_contexts") 110 "boot.img", "boot.img", OPTIONS.input_tmp, "BOOT") 114 "recovery.img", "recovery.img", OPTIONS.input_tmp, "RECOVERY") [all …]
|
D | common.py | 65 OPTIONS = Options() variable 79 if OPTIONS.verbose: 314 info_dict = OPTIONS.info_dict 378 cmd = [OPTIONS.boot_signer_path] 379 cmd.extend(OPTIONS.boot_signer_args) 451 OPTIONS.tempfiles.append(tmp) 489 p = Run(["openssl", "pkcs8", "-in", k+OPTIONS.private_key_suffix, 499 p = Run(["openssl", "pkcs8", "-in", k+OPTIONS.private_key_suffix, 546 cmd = [OPTIONS.java_path, OPTIONS.java_args, "-jar", 547 os.path.join(OPTIONS.search_path, OPTIONS.signapk_path)] [all …]
|
D | check_target_files_signatures | 66 OPTIONS = common.OPTIONS variable 68 OPTIONS.text = False 69 OPTIONS.compare_with = None 70 OPTIONS.local_cert_dirs = ("vendor", "build") 123 for top in OPTIONS.local_cert_dirs: 377 OPTIONS.compare_with = a 379 OPTIONS.local_cert_dirs = [i.strip() for i in a.split(",")] 381 OPTIONS.text = True 406 if OPTIONS.compare_with: 410 compare_files.LoadZipFile(OPTIONS.compare_with) [all …]
|
D | check_target_files_signatures.py | 66 OPTIONS = common.OPTIONS variable 68 OPTIONS.text = False 69 OPTIONS.compare_with = None 70 OPTIONS.local_cert_dirs = ("vendor", "build") 123 for top in OPTIONS.local_cert_dirs: 377 OPTIONS.compare_with = a 379 OPTIONS.local_cert_dirs = [i.strip() for i in a.split(",")] 381 OPTIONS.text = True 406 if OPTIONS.compare_with: 410 compare_files.LoadZipFile(OPTIONS.compare_with) [all …]
|
D | make_recovery_patch | 26 OPTIONS = common.OPTIONS variable 35 OPTIONS.info_dict = common.LoadInfoDict(input_dir)
|
D | make_recovery_patch.py | 26 OPTIONS = common.OPTIONS variable 35 OPTIONS.info_dict = common.LoadInfoDict(input_dir)
|
D | build_image.py | 33 OPTIONS = common.OPTIONS variable 171 if OPTIONS.verity_signer_path is not None: 172 signer_path = OPTIONS.verity_signer_path + ' ' 173 signer_path += ' '.join(OPTIONS.verity_signer_args)
|
/build/tools/droiddoc/templates-sdk/assets/js/ |
D | docs.js | 4677 this.options = options = $.extend({}, DacCarousel.OPTIONS, this.el.data(), options || {}); 4687 DacCarousel.OPTIONS = {
|