Home
last modified time | relevance | path

Searched refs:tar_file (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/as_is/os400/
Dunpax-icu.sh63 tar_file=$1
66 if [ ! -r $tar_file ]; then
67 echo "$tar_file does not exist or cannot be read."
80 echo "Extracting from $tar_file ..."
84 pax -C 819 -rc${VERBOSE_UNPACK}f $tar_file $ebcdic_data
90 pax -C 37 -r${VERBOSE_UNPACK}f $tar_file $ebcdic_data
106 pax -C 819 -rvf $tar_file `cat icu/as_is/bomlist.txt`
127 pax -C 819 -rvf $tar_file $binary_files;
139 pax -C 819 -rvf $tar_file $binary_files
150 pax -C 819 -rvf $tar_file $more_bin_files
[all …]
Dfixup-icu.sh28 tar_file=$1
52 pax -C 819 -rvf $tar_file $binary_files;
63 pax -C 819 -rvf $tar_file $binary_files
/external/icu/icu4c/as_is/os390/
Dunpax-icu.sh43 tar_file=$1
44 if [ ! -r $tar_file ]; then
45 echo "$tar_file does not exist or cannot be read."
51 echo "Extracting from $tar_file ..."
54 pax -rvf $tar_file -o to=IBM-1047,from=ISO8859-1 -o setfiletag
92 for i in $(pax -f $tar_file 2>/dev/null)
123 pax -rvf $tar_file $binary_files
129 echo "$0 has completed extracting ICU from $tar_file."
/external/toolchain-utils/automation/common/
Dcommand.py223 def UnTar(tar_file, dest_dir): argument
225 MakeDir(dest_dir), Shell('tar', '-x', '-f', tar_file, '-C', dest_dir))
228 def Tar(tar_file, *args): argument
231 if tar_file.endswith('.tar.bz2'):
233 elif tar_file.endswith('.tar.gz'):
236 assert tar_file.endswith('.tar')
238 options.extend(['-f', tar_file])
241 return Chain(MakeDir(os.path.dirname(tar_file)), Shell('tar', *options))
/external/harfbuzz_ng/
DMakefile.am70 tar_file = $(PACKAGE_TARNAME)-$(VERSION).tar.bz2 macro
71 sha256_file = $(tar_file).sha256
73 $(sha256_file): $(tar_file)
79 release-files: $(tar_file) $(sha256_file) $(gpg_file)
/external/boringssl/src/util/bot/
Dextract.py57 with tarfile.open(path, 'r:gz') as tar_file:
58 for info in tar_file:
63 yield (info.name, info.mode, tar_file.extractfile(info))
Dupdate_clang.py62 with tarfile.open(temp.name, "r:gz") as tar_file:
63 tar_file.extractall(LLVM_BUILD_DIR)
/external/autotest/client/site_tests/platform_DebugDaemonDumpDebugLogs/
Dplatform_DebugDaemonDumpDebugLogs.py29 with tarfile.open(tmp_file, mode) as tar_file:
30 if len(tar_file.getmembers()) == 0: