Searched refs:tarball_path (Results 1 – 11 of 11) sorted by relevance
/external/toolchain-utils/cwp/interpreter/ |
D | symbolizer.py | 75 tarball_path = os.path.join(tarball_dir, 'debug.tgz') 85 if not os.path.isfile(tarball_path): 86 download_cmd = GSUTIL_CMD % (board, vers, tarball_path + tmp_suffix) 93 os.remove(tarball_path + tmp_suffix) 96 shutil.move(tarball_path + tmp_suffix, tarball_path) 100 extract_cmd = TAR_CMD % (tarball_path, symbol_dir + tmp_suffix) 108 os.remove(tarball_path)
|
/external/autotest/utils/ |
D | packager.py | 152 tarball_path = pkgmgr.tar_package(pkg_name, pkg_dir, 156 md5sum = pkgmgr.compute_checksum(tarball_path) 174 tarball_path = os.path.join(pkg_dir, pkg_name); 175 if os.path.exists(tarball_path): 177 tarball_path) 179 tarball_path = pkgmgr.tar_package(pkg_name, pkg_dir, 184 if not pkgmgr.compare_checksum(tarball_path): 185 pkgmgr.upload_pkg(tarball_path, update_checksum=True) 188 'in packages/ directory.', tarball_path) 224 tarball_path = os.path.join(pkg_dir, pkg_name); [all …]
|
/external/autotest/client/deps/webgl_clear/ |
D | webgl_clear.py | 20 tarball_path = os.path.join(filesdir, tarball) 24 if not os.path.exists(tarball_path): 26 'http://github.com/greggman/tdl/archive/0.0.2.tar.gz', tarball_path) 29 utils.extract_tarball_to_dir(tarball_path, srcdir)
|
/external/jsoncpp/devtools/ |
D | tarball.py | 7 def make_tarball(tarball_path, sources, base_dir, prefix_dir=''): argument 32 tar = tarfile.TarFile.gzopen( tarball_path, 'w', compresslevel=compression ) 44 def decompress( tarball_path, base_dir ): argument 49 tar = tarfile.TarFile.gzopen(tarball_path, mode='r')
|
/external/jsoncpp/ |
D | doxybuild.py | 92 tarball_path = os.path.join( 'dist', html_output_dirname + '.tar.gz' ) 126 print('Generating doc tarball to', tarball_path) 135 tarball.make_tarball( tarball_path, tarball_sources, tarball_basedir, html_output_dirname ) 136 return tarball_path, html_output_dirname
|
/external/autotest/client/common_lib/ |
D | packages.py | 828 tarball_path = os.path.join(dest_dir, pkg_name) 829 temp_path = tarball_path + '.tmp' 844 os.rename(temp_path, tarball_path) 845 return tarball_path 848 def untar_required(self, tarball_path, dest_dir): argument 862 new_checksum = self.compute_checksum(tarball_path) 866 def untar_pkg(self, tarball_path, dest_dir): argument 875 (tarball_path, dest_dir)) 878 pkg_checksum = self.compute_checksum(tarball_path)
|
D | test.py | 804 tarball_path = os.path.join(group_dir, tarball) 806 job.pkgmgr.fetch_pkg(tarball, tarball_path, 813 job.pkgmgr.untar_pkg(tarball_path, test_dir) 815 os.remove(tarball_path)
|
/external/autotest/client/deps/webgl_perf/ |
D | webgl_perf.py | 21 tarball_path = os.path.join(filesdir, tarball) 24 utils.extract_tarball_to_dir(tarball_path, srcdir)
|
/external/autotest/client/site_tests/graphics_WebGLAquarium/ |
D | graphics_WebGLAquarium.py | 62 tarball_path = os.path.join(self.bindir, 64 utils.extract_tarball_to_dir(tarball_path, self.srcdir)
|
/external/autotest/server/ |
D | autotest.py | 1410 tarball_path = self.job.pkgmgr.tar_package( 1412 self.host.send_file(tarball_path, remote_dest)
|
/external/autotest/docs/ |
D | best-practices.md | 433 utils.update_version(os.getcwd(), True, version, setup, tarball_path,
|