Home
last modified time | relevance | path

Searched refs:work_dir (Results 1 – 3 of 3) sorted by relevance

/system/apex/tools/
Dapex_compression_tool.py70 def RunCompress(args, work_dir): argument
97 original_apex = os.path.join(work_dir, 'original_apex')
99 cmd.extend(['-C', work_dir])
105 extract_dir = os.path.join(work_dir, 'extract')
116 zip_obj.extract('apex_payload.img', path= work_dir)
117 image_path = os.path.join(work_dir, 'apex_payload.img')
196 with TempDirectory() as work_dir:
197 success = args.func(args, work_dir)
/system/apex/apexer/
Dapexer.py483 def CreateImageExt4(args, work_dir, manifests_dir, img_file): argument
515 with tempfile.NamedTemporaryFile(dir=work_dir,
524 compiled_file_contexts = os.path.join(work_dir, 'file_contexts.bin')
604 def CreateImageErofs(args, work_dir, manifests_dir, img_file): argument
608 tmp_input_dir = os.path.join(work_dir, 'tmp_input_dir')
637 def CreateImage(args, work_dir, manifests_dir, img_file): argument
640 CreateImageExt4(args, work_dir, manifests_dir, img_file)
644 CreateImageErofs(args, work_dir, manifests_dir, img_file)
697 def CreateApexPayload(args, work_dir, content_dir, manifests_dir, argument
713 CreateImage(args, work_dir, manifests_dir, img_file)
[all …]
/system/update_engine/scripts/
Dbrillo_update_payload264 DEFINE_string work_dir "${TMPDIR:-/tmp}" "Where to dump temporary files."