Searched refs:install_dir (Results 1 – 4 of 4) sorted by relevance
/development/vndk/snapshot/ |
D | update.py | 56 def remove_old_snapshot(install_dir): argument 57 logger().info('Removing any old files in {}'.format(install_dir)) 58 for file in glob.glob('{}/*'.format(install_dir)): 69 def install_snapshot(branch, build, install_dir, temp_artifact_dir): argument 97 os.chdir(install_dir) 110 check_call(['unzip', '-q', artifact, '-d', install_dir]) 113 def gather_notice_files(install_dir): argument 119 for variant in utils.get_snapshot_variants(install_dir): 221 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)) 222 if not os.path.isdir(install_dir): [all …]
|
D | check_gpl_license.py | 38 def __init__(self, install_dir, android_build_top, temp_artifact_dir): argument 47 self._install_dir = install_dir 50 self._notice_files_dir = os.path.join(install_dir, 197 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)) 198 if not os.path.isdir(install_dir): 201 .format(install_dir)) 212 license_checker = GPLChecker(install_dir, ANDROID_BUILD_TOP,
|
D | gen_buildfiles.py | 59 def __init__(self, install_dir, vndk_version): argument 67 self._install_dir = install_dir 70 self._snapshot_variants = utils.get_snapshot_variants(install_dir) 71 self._mkfile = os.path.join(install_dir, utils.ANDROID_MK_PATH) 356 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)) 358 buildfile_generator = GenBuildFile(install_dir, vndk_version)
|
D | utils.py | 63 def get_snapshot_variants(install_dir): argument 70 for file in glob.glob('{}/*'.format(install_dir)):
|