HomeSort by relevance Sort by last modified time
    Searched refs:tar (Results 201 - 225 of 392) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 340 """Create a (possibly compressed) tar file from all the files under
349 The output tar file will be named 'base_name' + ".tar", possibly plus
362 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
376 logger.info('Creating tar archive')
391 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
393 tar.add(base_dir, filter=_set_uid_gid)
395 tar.close()
463 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
464 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 336 """Create a (possibly compressed) tar file from all the files under
345 The output tar file will be named 'base_name' + ".tar", possibly plus
358 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
371 logger.info('Creating tar archive')
386 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
388 tar.add(base_dir, filter=_set_uid_gid)
390 tar.close()
460 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
461 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
    [all...]
  /external/devlib/devlib/module/
vexpress.py 347 with tarfile.open(bundle) as tar:
348 tar.extractall(self.vemsd_mount)
361 raise HostError('Image bundle {} does not appear to be a valid TAR file.'.format(bundle))
362 with tarfile.open(bundle) as tar:
364 tar.getmember('config.txt')
367 tar.getmember('./config.txt')
  /external/python/cpython2/Lib/
shutil.py 340 """Create a (possibly compressed) tar file from all the files under
349 The output tar file will be named 'base_name' + ".tar", possibly plus
362 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
376 logger.info('Creating tar archive')
391 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
393 tar.add(base_dir, filter=_set_uid_gid)
395 tar.close()
473 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
474 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shutil.py 339 """Create a (possibly compressed) tar file from all the files under
348 The output tar file will be named 'base_name' + ".tar", possibly plus
361 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
375 logger.info('Creating tar archive')
390 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
392 tar.add(base_dir, filter=_set_uid_gid)
394 tar.close()
464 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
465 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
shutil.py 339 """Create a (possibly compressed) tar file from all the files under
348 The output tar file will be named 'base_name' + ".tar", possibly plus
361 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
375 logger.info('Creating tar archive')
390 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
392 tar.add(base_dir, filter=_set_uid_gid)
394 tar.close()
464 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
465 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 339 """Create a (possibly compressed) tar file from all the files under
348 The output tar file will be named 'base_name' + ".tar", possibly plus
361 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
375 logger.info('Creating tar archive')
390 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
392 tar.add(base_dir, filter=_set_uid_gid)
394 tar.close()
464 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
465 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 339 """Create a (possibly compressed) tar file from all the files under
348 The output tar file will be named 'base_name' + ".tar", possibly plus
361 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
375 logger.info('Creating tar archive')
390 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
392 tar.add(base_dir, filter=_set_uid_gid)
394 tar.close()
464 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
465 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file")
    [all...]
  /external/bzip2/
Makefile 144 tar cvf $(DISTNAME).tar \
201 gzip -v $(DISTNAME).tar
  /external/python/cpython2/Lib/distutils/tests/
test_archive_util.py 60 # creating something to tar
73 # working with relative paths to avoid tar warnings
82 tarball = base_name + '.tar.gz'
93 tarball = base_name + '.tar'
97 tar = tarfile.open(path)
99 names = tar.getnames()
103 tar.close()
106 # creating something to tar
120 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),
121 'Need the tar command to run'
    [all...]
  /external/zlib/src/contrib/untgz/
untgz.c 2 * untgz.c -- Display contents and extract files from a gzip'd TAR file
52 /* GNU tar extensions */
63 /* tar header */
120 int tar OF((gzFile, int, int, int, char **));
127 const char *TGZsuffix[] = { "\0", ".tar", ".tar.gz", ".taz", ".tgz", NULL };
384 /* tar file list or extract */
386 int tar (gzFile in,int action,int arg,int argc,char **argv) function
409 * the tar information.
418 * If we have to get a tar heade
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 60 # creating something to tar
73 # working with relative paths to avoid tar warnings
82 tarball = base_name + '.tar.gz'
93 tarball = base_name + '.tar'
97 tar = tarfile.open(path)
99 names = tar.getnames()
103 tar.close()
106 # creating something to tar
120 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),
121 'Need the tar command to run'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 60 # creating something to tar
73 # working with relative paths to avoid tar warnings
82 tarball = base_name + '.tar.gz'
93 tarball = base_name + '.tar'
97 tar = tarfile.open(path)
99 names = tar.getnames()
103 tar.close()
106 # creating something to tar
120 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),
121 'Need the tar command to run'
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/untgz/
untgz.c 2 * untgz.c -- Display contents and extract files from a gzip'd TAR file
52 /* GNU tar extensions */
63 /* tar header */
120 int tar OF((gzFile, int, int, int, char **));
127 const char *TGZsuffix[] = { "\0", ".tar", ".tar.gz", ".taz", ".tgz", NULL };
384 /* tar file list or extract */
386 int tar (gzFile in,int action,int arg,int argc,char **argv) function
409 * the tar information.
418 * If we have to get a tar heade
    [all...]
  /external/curl/
maketgz 163 # Now run make dist to generate a tar.gz archive
167 targz="curl-$version.tar.gz"
172 # Now make a bz2 archive from the tar.gz original
175 bzip2="curl-$version.tar.bz2"
181 # Now make an xz archive from the tar.gz original
184 xz="curl-$version.tar.xz"
190 # Now make a zip archive from the tar.gz original
197 gzip -dc ../$targz | tar -xf -
  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
ptrace.h 105 /* TAR, PPR, DSCR */
151 int write_tar_registers(pid_t child, unsigned long tar,
167 *reg = tar;
242 int write_ckpt_tar_registers(pid_t child, unsigned long tar,
258 *reg = tar;
  /external/tensorflow/tensorflow/tools/ci_build/builds/
test_tutorials.sh 245 tar -xzf $(basename "${PTB_DATA_URL}")
  /external/iputils/
iputils.spec 12 Source0: iputils-s%{ssdate}.tar.bz2
  /external/protobuf/
configure.ac 43 AM_INIT_AUTOMAKE([1.9 tar-ustar subdir-objects])
  /external/protobuf/util/
configure.ac 43 AM_INIT_AUTOMAKE([1.9 tar-ustar subdir-objects])
  /prebuilts/go/darwin-x86/src/runtime/
vlop_arm_test.go 13 // http://ridiculousfish.com/files/division_benchmarks.tar.gz
  /prebuilts/go/linux-x86/src/runtime/
vlop_arm_test.go 13 // http://ridiculousfish.com/files/division_benchmarks.tar.gz
  /toolchain/binutils/binutils-2.27/
djunpack.bat 12 Rem djunpack gdb-XYZ.tar
  /tools/acloud/internal/lib/
utils.py 257 """Archive files in tar.gz format to a file named as |dest|.
262 dest: String, path to output file, e.g. /tmp/myfile.tar.gz
265 with tarfile.open(dest, "w:gz") as tar:
267 tar.add(src, arcname=arcname)
  /external/libxaac/decoder/
ixheaacd_env_dec.c 170 WORD32 tar, index_3; local
172 tar = ixheaacd_min32(ixheaacd_drc_offset, band);
174 for (band = 0; band < tar; band++) {
197 WORD32 tar, index_2; local
199 tar = ixheaacd_min32(ixheaacd_drc_offset, band);
200 for (band = 0; band < tar; band++) {

Completed in 498 milliseconds

1 2 3 4 5 6 7 891011>>