Searched refs:tar (Results 1 – 8 of 8) sorted by relevance
40 import org.apache.commons.compress.archivers.tar.TarArchiveEntry;41 import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream;103 File tar = in test_logsCoverageZip() local110 doReturn(tar).when(mMockDevice).pullFile(anyString()); in test_logsCoverageZip()246 File tar = in testNoCollectOnTestEnd_noCoverageMeasurements() local250 doReturn(tar).when(mMockDevice).pullFile(anyString()); in testNoCollectOnTestEnd_noCoverageMeasurements()
46 import org.apache.commons.compress.archivers.tar.TarArchiveEntry;47 import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream;
33 import org.apache.commons.compress.archivers.tar.TarArchiveEntry;34 import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream;209 TarArchiveOutputStream tar = (TarArchiveOutputStream) out; in createHostPackage() local211 tar.putArchiveEntry(tarEntry); in createHostPackage()212 tar.closeArchiveEntry(); in createHostPackage()213 tar.finish(); in createHostPackage()
64 // The name of the default disk image, e.g. avd-system.tar.gz66 // The mime type of the disk image, e.g. 'application/x-tar'68 // The file extension of disk image, e.g. ".tar.gz"70 // The name of the raw image name that should apper in the tar gz file.74 // If file is of this type, it will be compressed to avd-system.tar.gz
2 disk_image_name: "avd-system.tar.gz"3 disk_image_mime_type: "application/x-tar"4 disk_image_extension: ".tar.gz"
159 private File convertTarToZip(File tar) throws IOException { in convertTarToZip() argument163 TarUtil.unTar(tar, untarDir); in convertTarToZip()
26 import org.apache.commons.compress.archivers.tar.TarArchiveEntry;27 import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
318 with tarfile.open(dest, "w:gz") as tar:320 tar.add(src, arcname=arcname)