Home
last modified time | relevance | path

Searched refs:install_dir (Results 1 – 4 of 4) sorted by relevance

/development/vndk/snapshot/
Dupdate.py46 def remove_old_snapshot(install_dir): argument
47 logging.info('Removing any old files in {}'.format(install_dir))
48 for file in glob.glob('{}/*'.format(install_dir)):
59 def install_snapshot(branch, build, local_dir, install_dir, temp_artifact_dir): argument
88 os.chdir(install_dir)
96 utils.check_call(['unzip', '-qn', artifact, '-d', install_dir])
99 def gather_notice_files(install_dir): argument
106 for arch in utils.get_snapshot_archs(install_dir):
241 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version))
242 if not os.path.isdir(install_dir):
[all …]
Dcheck_gpl_license.py39 def __init__(self, install_dir, android_build_top, temp_artifact_dir, argument
54 self._install_dir = install_dir
58 self._notice_files_dir = os.path.join(install_dir,
264 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version))
266 if not os.path.isdir(install_dir):
269 .format(install_dir))
281 license_checker = GPLChecker(install_dir, ANDROID_BUILD_TOP,
Dgen_buildfiles.py68 def __init__(self, install_dir, vndk_version): argument
76 self._install_dir = install_dir
79 self._snapshot_archs = utils.get_snapshot_archs(install_dir)
80 self._root_bpfile = os.path.join(install_dir, utils.ROOT_BP_PATH)
81 self._common_bpfile = os.path.join(install_dir, utils.COMMON_BP_PATH)
519 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version))
520 if not os.path.isdir(install_dir):
523 .format(install_dir))
526 buildfile_generator = GenBuildFile(install_dir, vndk_version)
Dutils.py86 def get_snapshot_archs(install_dir): argument
93 for file in glob.glob('{}/*'.format(install_dir)):