Home
last modified time | relevance | path

Searched refs:tar_file (Results 1 – 9 of 9) 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.am74 tar_file = $(PACKAGE_TARNAME)-$(VERSION).tar.bz2 macro
75 sha256_file = $(tar_file).sha256
77 $(sha256_file): $(tar_file)
83 release-files: $(tar_file) $(sha256_file) $(gpg_file)
/external/boringssl/src/util/bot/
Dextract.py71 with tarfile.open(path, 'r:' + compression) as tar_file:
72 for info in tar_file:
78 yield FileEntry(info.name, info.mode, tar_file.extractfile(info))
/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:
/external/tensorflow/tensorflow/lite/testing/
Dgenerated_examples_zip_test.cc234 const string& tar_file) { in UnarchiveAndFindTestNames() argument
235 if (zip_file.empty() && tar_file.empty()) { in UnarchiveAndFindTestNames()
240 TF_CHECK_OK(archive_environment()->UnArchive(zip_file, tar_file, in UnarchiveAndFindTestNames()
246 TF_CHECK_OK(ReadManifest(tar_file, decompress_tmp_dir, &stuff)); in UnarchiveAndFindTestNames()
/external/tensorflow/tensorflow/python/keras/utils/
Ddata_utils_test.py51 with tarfile.open(tar_file_path, 'w:gz') as tar_file:
52 tar_file.add(text_file_path)