| /third_party/toybox/tests/ |
| D | unzip.test | 13 # unzip -l 14 testing "-l" "unzip -l $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/x.txt ] && echo okay" "\ 23 # unzip -lq 24 testing "-lq" "unzip -lq $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/x.txt ] && echo okay" "\ 32 # unzip -lv 33 testing "-lv" "unzip -lv $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/file ] && echo okay" "\ 42 # unzip -v 43 testing "-v" "unzip -v $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/file ] && echo okay" "\ 52 # unzip 53 testing "one file" "unzip -q $FILES/zip/example.zip d1/d2/a.txt && [ ! -f d1/d2/b.txt ] && cat d1/d… [all …]
|
| /third_party/ltp/testcases/commands/unzip/ |
| D | unzip01.sh | 7 # Tests basic functionality of unzip command. 12 TST_NEEDS_CMDS="unzip" 16 if unzip 2>&1 | grep -q 'BusyBox'; then 64 EXPECT_PASS unzip "$TST_DATAROOT/test.zip" \> unzip.out 66 if diff -w unzip_exp.out unzip.out; then 67 tst_res TPASS "Unzip output is correct" 69 tst_res TFAIL "Unzip output is incorrect" 70 cat unzip.out
|
| /third_party/node/deps/npm/node_modules/tar/lib/ |
| D | parse.js | 48 const UNZIP = Symbol('unzip') constant 124 this[UNZIP] = null 360 const needSniff = this[UNZIP] === null || 361 this.brotli === undefined && this[UNZIP] === false 373 for (let i = 0; this[UNZIP] === null && i < gzipHeader.length; i++) { 375 this[UNZIP] = false 380 if (this[UNZIP] === false && maybeBrotli) { 404 if (this[UNZIP] === null || (this[UNZIP] === false && this.brotli)) { 407 this[UNZIP] = this[UNZIP] === null 408 ? new zlib.Unzip() [all …]
|
| /third_party/skia/third_party/externals/zlib/patches/ |
| D | 0000-build.patch | 48 #include "unzip.h" 63 #include "unzip.h" 64 diff --git a/contrib/minizip/unzip.c b/contrib/minizip/unzip.c 66 --- a/contrib/minizip/unzip.c 67 +++ b/contrib/minizip/unzip.c 74 #include "unzip.h" 89 diff --git a/contrib/minizip/unzip.h b/contrib/minizip/unzip.h 91 --- a/contrib/minizip/unzip.h 92 +++ b/contrib/minizip/unzip.h
|
| /third_party/node/deps/v8/third_party/zlib/patches/ |
| D | 0000-build.patch | 48 #include "unzip.h" 63 #include "unzip.h" 64 diff --git a/contrib/minizip/unzip.c b/contrib/minizip/unzip.c 66 --- a/contrib/minizip/unzip.c 67 +++ b/contrib/minizip/unzip.c 74 #include "unzip.h" 89 diff --git a/contrib/minizip/unzip.h b/contrib/minizip/unzip.h 91 --- a/contrib/minizip/unzip.h 92 +++ b/contrib/minizip/unzip.h
|
| /third_party/skia/third_party/externals/zlib/contrib/minizip/ |
| D | ChangeLogUnzip | 3 - Fix possible memory leak in unzip.c (Zoran Stevanovic) 10 - fix buffer overrun risk in unzip.c (Xavier Roche) 36 - fix bug in unzlocal_GetCurrentFileInfoInternal in unzip.c for 54 - rename unzip* to unz* function and structure 56 - modify some structure in unzip.h
|
| /third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
| D | ChangeLogUnzip | 3 - Fix possible memory leak in unzip.c (Zoran Stevanovic) 10 - fix buffer overrun risk in unzip.c (Xavier Roche) 36 - fix bug in unzlocal_GetCurrentFileInfoInternal in unzip.c for 54 - rename unzip* to unz* function and structure 56 - modify some structure in unzip.h
|
| /third_party/protobuf/src/google/protobuf/compiler/ |
| D | zip_output_unittest.sh | 45 UNZIP=unzip 62 if $UNZIP -h > /dev/null; then 63 $UNZIP -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list \ 64 || fail 'unzip failed.' 75 echo "Warning: 'unzip' command not available. Skipping test."
|
| /third_party/node/test/parallel/ |
| D | test-zlib-from-concatenated-gzip.js | 27 zlib.unzip(data, common.mustSucceed((result) => { 32 zlib.unzip(Buffer.concat([ 63 const unzip = zlib.createGunzip() constant 77 unzip.write(Buffer.concat([ 82 unzip.end(defEncoded.slice(offset));
|
| D | test-zlib-zero-windowBits.js | 22 const unzip = zlib.createUnzip({ windowBits: 0 }); constant 23 assert(unzip instanceof zlib.Unzip);
|
| D | test-zlib-unzip-one-byte-chunks.js | 13 const unzip = zlib.createUnzip() constant 27 unzip.write(Buffer.from([data[i]])); 30 unzip.end();
|
| D | test-zlib-write-after-close.js | 27 const unzip = zlib.createGunzip(); 28 unzip.close(common.mustCall()); 29 unzip.write('asd', common.expectsError({
|
| D | test-zlib-close-after-write.js | 27 const unzip = zlib.createGunzip(); constant 28 unzip.write(out); 29 unzip.close(common.mustCall());
|
| /third_party/zlib/contrib/minizip/ |
| D | MiniZip64_info.txt | 14 support for unzip.c into minizip for a open source project called gdal ( http://www.gdal.org/ ) 22 * Added ZIP64 support for unzip ( by Even Rouault ) 26 * Added unzip patch for BZIP Compression method (patch create by Daniel Borca) 34 Even Rouault - ZIP64 unzip Support 35 Daniel Borca - BZip Compression method support in unzip
|
| D | Makefile.am | 21 unzip.c \ 32 unzip.h \
|
| /third_party/skia/infra/bots/ |
| D | zip_utils_test.py | 35 # Zip, unzip. 37 zip_utils.unzip('test.zip', 'output') 53 # Zip, unzip. 55 zip_utils.unzip('test.zip', 'output')
|
| /third_party/node/deps/zlib/google/ |
| D | zip_unittest.cc | 276 ASSERT_TRUE(zip::Unzip(path, test_dir_)); in TestUnzipFile() 355 ASSERT_TRUE(zip::Unzip(zip_file, out_dir)); in TestTimeStamp() 382 EXPECT_FALSE(zip::Unzip(GetDataDirectory().AppendASCII("No Such File.zip"), in TEST_F() 392 TEST_F(ZipTest, Unzip) { in TEST_F() argument 402 // Unzip the zip file into a sub directory of test_dir_ so evil.zip in TEST_F() 406 EXPECT_TRUE(zip::Unzip(path, output_dir)); in TEST_F() 417 ASSERT_TRUE(zip::Unzip(path, output_dir)); in TEST_F() 427 ASSERT_TRUE(zip::Unzip(GetDataDirectory().AppendASCII("test.zip"), test_dir_, in TEST_F() 444 ASSERT_TRUE(zip::Unzip( in TEST_F() 464 ASSERT_FALSE(zip::Unzip( in TEST_F() [all …]
|
| /third_party/node/deps/v8/third_party/zlib/google/ |
| D | zip_unittest.cc | 276 ASSERT_TRUE(zip::Unzip(path, test_dir_)); in TestUnzipFile() 355 ASSERT_TRUE(zip::Unzip(zip_file, out_dir)); in TestTimeStamp() 382 EXPECT_FALSE(zip::Unzip(GetDataDirectory().AppendASCII("No Such File.zip"), in TEST_F() 392 TEST_F(ZipTest, Unzip) { in TEST_F() argument 402 // Unzip the zip file into a sub directory of test_dir_ so evil.zip in TEST_F() 406 EXPECT_TRUE(zip::Unzip(path, output_dir)); in TEST_F() 417 ASSERT_TRUE(zip::Unzip(path, output_dir)); in TEST_F() 427 ASSERT_TRUE(zip::Unzip(GetDataDirectory().AppendASCII("test.zip"), test_dir_, in TEST_F() 444 ASSERT_TRUE(zip::Unzip( in TEST_F() 464 ASSERT_FALSE(zip::Unzip( in TEST_F() [all …]
|
| /third_party/cups-filters/filter/braille/filters/ |
| D | texttobrf.in | 86 # tools need to seek within the file (e.g. unzip), or spaces in the path pose 128 CONVERT="unzip -p $FILE content.xml" 130 checkTool unzip unzip "translating LibreOffice/OpenOffice OpenDocument files" 135 CONVERT="unzip -p $FILE word/document.xml" 137 checkTool unzip unzip "translating MS-Word docx files"
|
| /third_party/node/lib/ |
| D | zlib.js | 89 DEFLATE, DEFLATERAW, INFLATE, INFLATERAW, GZIP, GUNZIP, UNZIP, 624 // what was consumed; that is, everything except Gunzip/Unzip. 663 mode === UNZIP)) { 798 function Unzip(opts) { class 799 if (!(this instanceof Unzip)) 800 return new Unzip(opts); 801 ReflectApply(Zlib, this, [opts, UNZIP]); 803 ObjectSetPrototypeOf(Unzip.prototype, Zlib.prototype); 804 ObjectSetPrototypeOf(Unzip, Zlib); 917 Unzip, property [all …]
|
| /third_party/skia/third_party/externals/zlib/google/ |
| D | zip_reader.cc | 20 #include <minizip/unzip.h> 22 #include "third_party/zlib/contrib/minizip/unzip.h" 301 DVLOG(1) << "Unzip failed: unable to create directory."; in ExtractCurrentEntryToFilePathAsync() 309 DVLOG(1) << "Unzip failed: unable to open current zip entry."; in ExtractCurrentEntryToFilePathAsync() 317 DVLOG(1) << "Unzip failed: unable to create containing directory."; in ExtractCurrentEntryToFilePathAsync() 327 DVLOG(1) << "Unzip failed: unable to create platform file at " in ExtractCurrentEntryToFilePathAsync() 422 DVLOG(1) << "Unzip failed: error while reading zipfile " in ExtractChunk() 427 DVLOG(1) << "Unzip failed: unable to write all bytes to target."; in ExtractChunk()
|
| D | zip.h | 150 // Unzip the contents of zip_file into dest_dir. 161 // Unzip the contents of zip_file, using the writers provided by writer_factory. 176 // Unzip the contents of zip_file into dest_dir. 177 bool Unzip(const base::FilePath& zip_file, const base::FilePath& dest_dir);
|
| /third_party/node/deps/zlib/patches/ |
| D | 0000-build.patch | 25 diff --git a/contrib/minizip/unzip.c b/contrib/minizip/unzip.c 27 --- a/contrib/minizip/unzip.c 28 +++ b/contrib/minizip/unzip.c
|
| /third_party/skia/build/fuchsia/ |
| D | update_fuchsia_sdk | 44 # Download and unzip CIPD package archive. 50 unzip_cmd = "unzip -q " + zip_file.name + " -d " + output_dir 63 " the unzip command issue will require file overwrite confirmation.")
|
| /third_party/elfutils/libdwfl/ |
| D | gzip.c | 39 # define unzip __libdw_unlzma macro 52 # define unzip __libdw_unzstd macro 58 # define unzip __libdw_bunzip2 macro 71 # define unzip __libdw_gunzip macro 179 unzip (int fd, off_t start_offset, in unzip() function
|