HomeSort by relevance Sort by last modified time
    Searched refs:tar (Results 126 - 150 of 265) sorted by null

1 2 3 4 56 7 8 91011

  /external/chromium_org/chrome/installer/linux/sysroot_scripts/
sysroot-creator-debian.wheezy.sh 312 Banner "creating tar ball ${tarball}"
313 tar zcf ${tarball} -C ${INSTALL_ROOT} .
384 | tar -xvf - --exclude=./usr/share -C ${INSTALL_ROOT}
  /external/chromium_org/sdch/open-vcdiff/packages/rpm/
rpm.spec 14 Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz
  /external/chromium_org/third_party/openssl/openssl/
Apps-config.mk 3 # ./import_openssl.sh import /path/to/openssl-1.0.1e.tar.gz
Ssl-config.mk 3 # ./import_openssl.sh import /path/to/openssl-1.0.1e.tar.gz
  /external/chromium_org/third_party/tcmalloc/vendor/packages/rpm/
rpm.spec 14 Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz
  /external/chromium_org/tools/clang/scripts/
package.sh 88 tar zcf $PDIR.tgz -C $PDIR bin lib buildlog.txt
  /external/dhcpcd/
Makefile 50 DISTFILE?= ${DISTPREFIX}.tar.bz2
52 CLEANFILES+= *.tar.bz2
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.eclipse.properties 83 # eg., win32,win,SDK,eclipse-SDK-%%buildAlias%%-win32.zip,linux,gtk,SDK,eclipse-SDK-%%buildAlias%%-linux-gtk.tar.gz
86 linux,gtk,x86,SDK,eclipse-SDK-%%buildAlias%%-linux-gtk.tar.gz
feedPublish.emf.properties 57 dependencyURLs=http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz
feedPublish.uml2.properties 57 dependencyURLs=http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz http://www.eclipse.org/downloads/download.php?file=/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip
  /external/libpcap/packaging/
pcap.spec 10 Source: libpcap-0.9.4.tar.gz
  /external/open-vcdiff/packages/rpm/
rpm.spec 14 Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz
  /external/openssl/
Apps-config.mk 3 # ./import_openssl.sh import /path/to/openssl-1.0.1e.tar.gz
Ssl-config.mk 3 # ./import_openssl.sh import /path/to/openssl-1.0.1e.tar.gz
  /external/scrypt/
Scrypt-config.mk 3 # ./import_scrypt.sh import /path/to/scrypt-1.1.6.tar.gz
  /ndk/build/tools/
build-ndk-sysroot.sh 298 PKGFILE=/tmp/ndk-$USER/android-ndk-sysroot-$DATE.tar.bz2
299 tar cjf $PKGFILE build/platforms/$PLATFORM/arch-$ARCH
build-gcc.sh 201 if [ ! -f $SRC_DIR/mpfr/mpfr-$MPFR_VERSION.tar.bz2 ] ; then
202 echo "ERROR: Missing mpfr sources: $SRC_DIR/mpfr/mpfr-$MPFR_VERSION.tar.bz2"
245 mkdir -p $TOOLCHAIN_BUILD_SYSROOT && (cd $SYSROOT && tar ch *) | (cd $TOOLCHAIN_BUILD_SYSROOT && tar x)
481 # - Tar automatically detects hard links and will only store a
529 ARCHIVE="$TOOLCHAIN-$HOST_TAG.tar.bz2"
  /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/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...]
  /external/bison/djgpp/
djunpack.bat 28 Rem djunpack bison-XYZ.tar.gz
30 Rem djunpack bison-XYZ.tar.bz2
  /external/bluetooth/bluedroid/bta/gatt/
bta_gatts_int.h 249 extern BOOLEAN bta_gatts_uuid_compare(tBT_UUID tar, tBT_UUID src);

Completed in 1407 milliseconds

1 2 3 4 56 7 8 91011