Lines Matching refs:download_dir
100 def download_build(host, build_number, download_dir): argument
102 return download_file(host, build_number, filename, download_dir)
105 def download_manifest(host, build_number, download_dir): argument
107 return download_file(host, build_number, filename, download_dir)
110 def download_file(host, build_number, pkg_name, download_dir): argument
121 out_file_path = os.path.join(download_dir, pkg_name)
136 def update_clang(host, build_number, use_current_branch, download_dir, bug): argument
145 package = download_build(host, build_number, download_dir)
146 manifest = download_manifest(host, build_number, download_dir)
175 download_dir = os.path.realpath('.download')
176 if os.path.isdir(download_dir):
177 shutil.rmtree(download_dir)
178 os.makedirs(download_dir)
184 download_dir, args.bug)
186 shutil.rmtree(download_dir)