Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 10 of 10) sorted by relevance

/build/bazel/rules/cc/
Dcc_aidl_library_test.bzl59 output_path = paths.join(
67 paths.join(output_path, "a/b/BpA.h"),
68 paths.join(output_path, "a/b/BnA.h"),
69 paths.join(output_path, "a/b/A.h"),
70 paths.join(output_path, "a/b/A.cpp"),
71 paths.join(output_path, "a/b/BpB.h"),
72 paths.join(output_path, "a/b/BnB.h"),
73 paths.join(output_path, "a/b/B.h"),
74 paths.join(output_path, "a/b/B.cpp"),
87 output_path in cc_aidl_code_gen_target[CcInfo].compilation_context.includes.to_list(),
Drscript_to_cpp.bzl46 output_path = paths.join(ctx.bin_dir.path, ctx.label.package)
47 args.add("-o", output_path)
/build/make/tools/releasetools/merge/
Dtest_merge_meta.py58 output_path = os.path.join(output_meta_dir, 'apexkeys.txt')
60 with open(output_path) as f:
105 output_path = os.path.join(output_meta_dir, 'apkcerts.txt')
107 with open(output_path) as f:
/build/make/tools/releasetools/
Dcreate_brick_ota.py44 def CreateBrickOta(product_name: str, output_path: Path, extra_wipe_partitions: str, serialno: str):
54 with zipfile.ZipFile(output_path, "w") as zfp:
Dpayload_signer.py185 def SignOtaPackage(input_path, output_path): argument
189 common.ZipExclude(input_path, output_path, [PAYLOAD_BIN, PAYLOAD_PROPERTIES_TXT])
195 …with zipfile.ZipFile(output_path, "a", compression=zipfile.ZIP_STORED, allowZip64=True) as output_…
Dtest_common.py1704 def get_op_list(output_path): argument
1705 with zipfile.ZipFile(output_path, allowZip64=True) as output_zip:
1712 self.output_path = common.MakeTempFile(suffix='.zip')
1725 with zipfile.ZipFile(self.output_path, 'w', allowZip64=True) as output_zip:
1738 lines = self.get_op_list(self.output_path)
1773 with zipfile.ZipFile(self.output_path, 'w', allowZip64=True) as output_zip:
1776 lines = self.get_op_list(self.output_path)
1817 with zipfile.ZipFile(self.output_path, 'w', allowZip64=True) as output_zip:
1835 lines = self.get_op_list(self.output_path)
1888 with zipfile.ZipFile(self.output_path, 'w', allowZip64=True) as output_zip:
[all …]
Dbuild_image.py881 def BuildVBMeta(in_dir, glob_dict, output_path): argument
904 name = os.path.basename(output_path).rstrip(".img")
927 common.BuildVBMeta(output_path, partitions, name, vbmeta_partitions)
/build/bazel/rules/aidl/
Daidl_interface_test.bzl34 # output_path: <bazel-bin>/<package-dir>/<cc_aidl_library-labelname>_aidl_code_gen
36 # the output_path is guaranteed to be unique
37 output_path = paths.join(
45 paths.join(output_path, "aidl/b/BpFoo.h"),
46 paths.join(output_path, "aidl/b/BnFoo.h"),
47 paths.join(output_path, "aidl/b/Foo.h"),
48 paths.join(output_path, "b/Foo.cpp"),
64 output_path in cc_aidl_code_gen_target[CcInfo].compilation_context.includes.to_list(),
/build/soong/bazel/cquery/
Drequest_type.go308 output_path = target.files.to_list()[0].path
310 unstripped = output_path
332 "OutputFile": output_path,
/build/soong/scripts/
Dconv_linker_config.py158 def ValidateAndWriteAsPbFile(pb, output_path): argument
160 with open(output_path, 'wb') as f: