/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
D | Coders.java | 71 …static InputStream addDecoder(final String archiveName, final InputStream is, final long uncompres… in addDecoder() argument 77 + " used in " + archiveName); in addDecoder() 79 return cb.decode(archiveName, is, uncompressedLength, coder, password); in addDecoder() 93 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument 110 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument 115 throw new IOException("BCJ filter used in " + archiveName in decode() 137 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument 238 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument 251 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument
|
D | AES256SHA256Decoder.java | 34 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument 50 throw new IOException("Salt size + IV size too long in " + archiveName); in decode() 58 throw new PasswordRequiredException(archiveName); in decode()
|
D | LZMADecoder.java | 36 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument 41 … throw new IOException("Dictionary larger than 4GiB maximum size used in " + archiveName); in decode()
|
D | CoderBase.java | 67 abstract InputStream decode(final String archiveName, in decode() argument
|
D | DeltaDecoder.java | 33 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument
|
D | LZMA2Decoder.java | 35 … InputStream decode(final String archiveName, final InputStream in, final long uncompressedLength, in decode() argument
|
/external/python/cpython3/Mac/BuildScript/ |
D | build-installer.py | 701 def extractArchive(builddir, archiveName): argument 716 if archiveName.endswith('.tar.gz'): 717 retval = os.path.basename(archiveName[:-7]) 723 fp = os.popen("tar zxf %s 2>&1"%(shellQuote(archiveName),), 'r') 725 elif archiveName.endswith('.tar.bz2'): 726 retval = os.path.basename(archiveName[:-8]) 729 fp = os.popen("tar jxf %s 2>&1"%(shellQuote(archiveName),), 'r') 731 elif archiveName.endswith('.tar'): 732 retval = os.path.basename(archiveName[:-4]) 735 fp = os.popen("tar xf %s 2>&1"%(shellQuote(archiveName),), 'r') [all …]
|
/external/python/cpython2/Mac/BuildScript/ |
D | build-installer.py | 698 def extractArchive(builddir, archiveName): argument 713 if archiveName.endswith('.tar.gz'): 714 retval = os.path.basename(archiveName[:-7]) 720 fp = os.popen("tar zxf %s 2>&1"%(shellQuote(archiveName),), 'r') 722 elif archiveName.endswith('.tar.bz2'): 723 retval = os.path.basename(archiveName[:-8]) 726 fp = os.popen("tar jxf %s 2>&1"%(shellQuote(archiveName),), 'r') 728 elif archiveName.endswith('.tar'): 729 retval = os.path.basename(archiveName[:-4]) 732 fp = os.popen("tar xf %s 2>&1"%(shellQuote(archiveName),), 'r') [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | ZipFile.java | 128 private final String archiveName; field in ZipFile 277 public ZipFile(final SeekableByteChannel channel, final String archiveName, in ZipFile() argument 280 this(channel, archiveName, encoding, useUnicodeExtraFields, false); in ZipFile() 283 private ZipFile(final SeekableByteChannel channel, final String archiveName, in ZipFile() argument 287 this.archiveName = archiveName; in ZipFile() 572 + archiveName);
|
/external/lzma/CPP/7zip/UI/Client7z/ |
D | Client7z.cpp | 775 FString archiveName = CmdStringToFString(args[2]); in main() local 813 if (!outFileStreamSpec->Create(archiveName, false)) in main() 905 if (!fileSpec->Open(archiveName)) in main() 907 PrintError("Can not open archive file", archiveName); in main() 921 PrintError("Can not open file as archive", archiveName); in main()
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
D | SfxSetup.cpp | 146 UString archiveName, switches; in WinMain() local 150 NCommandLineParser::SplitCommandLine(GetCommandLineW(), archiveName, switches); in WinMain()
|
/external/conscrypt/benchmark-android/ |
D | build.gradle | 126 archiveName = 'bundled-deps.jar'
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrProcessorST.java | 129 final String archiveName = Files.getFileName (archive) + IAppConstants.APP_NAME_LC; in handleArchiveStart() local 134 m_tempArchiveFile = Files.createTempFile (parentDir, archiveName, archiveExt); in handleArchiveStart()
|