Home
last modified time | relevance | path

Searched full:zip (Results 1 – 25 of 4058) sorted by relevance

12345678910>>...163

/external/oss-fuzz/projects/dlplibs/
DDockerfile31 ADD https://dev-www.libreoffice.org/corpus/olefuzzer_seed_corpus.zip \
32 https://dev-www.libreoffice.org/corpus/pubfuzzer_seed_corpus.zip \
33 https://dev-www.libreoffice.org/corpus/zipfuzzer_seed_corpus.zip \
34 https://dev-www.libreoffice.org/corpus/cdrfuzzer_seed_corpus.zip \
35 https://dev-www.libreoffice.org/corpus/vsdfuzzer_seed_corpus.zip \
36 https://dev-www.libreoffice.org/corpus/zmffuzzer_seed_corpus.zip \
37 https://dev-www.libreoffice.org/corpus/pmdfuzzer_seed_corpus.zip \
38 https://dev-www.libreoffice.org/corpus/fhfuzzer_seed_corpus.zip \
39 https://dev-www.libreoffice.org/corpus/cmxfuzzer_seed_corpus.zip \
40 https://dev-www.libreoffice.org/corpus/sdcfuzzer_seed_corpus.zip \
[all …]
/external/oss-fuzz/projects/skia/
Dbuild.sh170 mv ../skia_data/region_set_path_seed_corpus.zip $OUT/region_set_path_seed_corpus.zip
173 mv ../skia_data/textblob_deserialize_seed_corpus.zip $OUT/textblob_deserialize_seed_corpus.zip
176 mv ../skia_data/path_deserialize_seed_corpus.zip $OUT/path_deserialize_seed_corpus.zip
179 mv ../skia_data/animated_image_decode_seed_corpus.zip $OUT/animated_image_decode_seed_corpus.zip
189 …./skia_data/image_filter_deserialize_seed_corpus.zip $OUT/image_filter_deserialize_width_seed_corp…
193 …v ../skia_data/image_filter_deserialize_seed_corpus.zip $OUT/image_filter_deserialize_seed_corpus.
196 mv ../skia_data/api_draw_functions_seed_corpus.zip $OUT/api_draw_functions_seed_corpus.zip
199 mv ../skia_data/api_gradients_seed_corpus.zip $OUT/api_gradients_seed_corpus.zip
202 mv ../skia_data/api_path_measure_seed_corpus.zip $OUT/api_path_measure_seed_corpus.zip
205 mv ../skia_data/api_pathop_seed_corpus.zip $OUT/api_pathop_seed_corpus.zip
[all …]
DDockerfile35 …ter_deserialize_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/image_filter_d…
37 …data/region_set_path_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/region_se…
39 …tblob_deserialize_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/textblob_des…
41 …ta/path_deserialize_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/path_deser…
43 …kia_data/image_decode_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/image_de…
45 …ated_image_decode_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/animated_ima…
47 …api_draw_functions_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/api_draw_fu…
49 …ia_data/api_gradients_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/api_grad…
51 …ta/api_image_filter_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/api_image_…
53 …ta/api_path_measure_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/api_path_m…
[all …]
/external/freetype/src/bzip2/
Dftbzip2.c141 ft_bzip2_file_init( FT_BZip2File zip, in ft_bzip2_file_init() argument
145 bz_stream* bzstream = &zip->bzstream; in ft_bzip2_file_init()
149 zip->stream = stream; in ft_bzip2_file_init()
150 zip->source = source; in ft_bzip2_file_init()
151 zip->memory = stream->memory; in ft_bzip2_file_init()
153 zip->limit = zip->buffer + FT_BZIP2_BUFFER_SIZE; in ft_bzip2_file_init()
154 zip->cursor = zip->limit; in ft_bzip2_file_init()
155 zip->pos = 0; in ft_bzip2_file_init()
172 bzstream->opaque = zip->memory; in ft_bzip2_file_init()
175 bzstream->next_in = (char*)zip->buffer; in ft_bzip2_file_init()
[all …]
/external/freetype/src/lzw/
Dftlzw.c103 ft_lzw_file_init( FT_LZWFile zip, in ft_lzw_file_init() argument
107 FT_LzwState lzw = &zip->lzw; in ft_lzw_file_init()
111 zip->stream = stream; in ft_lzw_file_init()
112 zip->source = source; in ft_lzw_file_init()
113 zip->memory = stream->memory; in ft_lzw_file_init()
115 zip->limit = zip->buffer + FT_LZW_BUFFER_SIZE; in ft_lzw_file_init()
116 zip->cursor = zip->limit; in ft_lzw_file_init()
117 zip->pos = 0; in ft_lzw_file_init()
133 ft_lzw_file_done( FT_LZWFile zip ) in ft_lzw_file_done() argument
136 ft_lzwstate_done( &zip->lzw ); in ft_lzw_file_done()
[all …]
/external/OpenCL-CTS/test_conformance/spir/
DCMakeLists.txt36 "api.zip"
37 "atomics.zip"
38 "basic.zip"
39 "compile_and_link.zip"
40 "commonfns.zip"
41 "conversions.zip"
42 "geometrics.zip"
43 "enum_values.zip"
44 "half.zip"
45 "kernel_attributes.zip"
[all …]
/external/rust/crates/zip/tests/
Dend_to_end.rs6 use zip::write::FileOptions;
7 use zip::{CompressionMethod, SUPPORTED_COMPRESSION_METHODS};
9 // This test asserts that after creating a zip file, then reading its contents back out,
17 write_test_archive(file, method).expect("Couldn't write test zip archive"); in end_to_end()
35 let mut src_archive = zip::ZipArchive::new(src_file).unwrap(); in copy()
36 let mut zip = zip::ZipWriter::new(&mut tgt_file); in copy() localVariable
43 zip.raw_copy_file(file).expect("Couldn't copy file"); in copy()
51 zip.raw_copy_file_rename(file, COPY_ENTRY_NAME) in copy()
56 let mut tgt_archive = zip::ZipArchive::new(tgt_file).unwrap(); in copy()
72 let mut zip = zip::ZipWriter::new_append(&mut file).unwrap(); in append() localVariable
[all …]
/external/freetype/src/gzip/
Dftgzip.c284 ft_gzip_file_init( FT_GZipFile zip, in ft_gzip_file_init() argument
288 z_stream* zstream = &zip->zstream; in ft_gzip_file_init()
292 zip->stream = stream; in ft_gzip_file_init()
293 zip->source = source; in ft_gzip_file_init()
294 zip->memory = stream->memory; in ft_gzip_file_init()
296 zip->limit = zip->buffer + FT_GZIP_BUFFER_SIZE; in ft_gzip_file_init()
297 zip->cursor = zip->limit; in ft_gzip_file_init()
298 zip->pos = 0; in ft_gzip_file_init()
308 zip->start = FT_STREAM_POS(); in ft_gzip_file_init()
317 zstream->next_in = zip->buffer; in ft_gzip_file_init()
[all …]
/external/oss-fuzz/projects/apache-commons/
DDockerfile19 …ps://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \
20 unzip maven.zip -d $SRC/maven && \
21 rm -rf maven.zip
27 mv fuzzing/dictionaries/zip.dict $SRC/CompressZipFuzzer.dict && \
36 zip -j $SRC/CompressTarFuzzer_seed_corpus.zip go-fuzz-corpus/tar/corpus/* && \
37 zip -j $SRC/CompressZipFuzzer_seed_corpus.zip go-fuzz-corpus/zip/corpus/* && \
38 zip -j $SRC/ImagingBmpFuzzer_seed_corpus.zip go-fuzz-corpus/bmp/corpus/* && \
39 zip -j $SRC/ImagingGifFuzzer_seed_corpus.zip go-fuzz-corpus/gif/corpus/* && \
40 zip -j $SRC/ImagingJpegFuzzer_seed_corpus.zip go-fuzz-corpus/jpeg/corpus/* && \
41 zip -j $SRC/ImagingPngFuzzer_seed_corpus.zip go-fuzz-corpus/png/corpus/* && \
[all …]
/external/angle/third_party/zlib/google/
Dzip_unittest.cc32 #include "third_party/zlib/google/zip.h"
73 class ProgressWriterDelegate : public zip::WriterDelegate {
117 // Used to test providing a custom zip::FileAccessor when unzipping.
118 class VirtualFileSystem : public zip::FileAccessor {
158 bool Open(const zip::Paths paths, in Open()
276 ASSERT_TRUE(zip::Unzip(path, test_dir_)); in TestUnzipFile()
321 // If the timestamp is not supported by the zip format, the last
328 base::FilePath zip_file = temp_dir.GetPath().AppendASCII("out.zip"); in TestTimeStamp()
341 // Adjusting the current timestamp to the resolution that the zip file in TestTimeStamp()
343 // and zip::Zip() the clock can advance a bit, hence the use of EXPECT_GE. in TestTimeStamp()
[all …]
/external/zlib/google/
Dzip_unittest.cc31 #include "third_party/zlib/google/zip.h"
71 class ProgressWriterDelegate : public zip::WriterDelegate {
115 // Used to test providing a custom zip::FileAccessor when unzipping.
116 class VirtualFileSystem : public zip::FileAccessor {
156 bool Open(const zip::Paths paths, in Open()
274 ASSERT_TRUE(zip::Unzip(path, test_dir_)); in TestUnzipFile()
319 // If the timestamp is not supported by the zip format, the last
326 base::FilePath zip_file = temp_dir.GetPath().AppendASCII("out.zip"); in TestTimeStamp()
339 // Adjusting the current timestamp to the resolution that the zip file in TestTimeStamp()
341 // and zip::Zip() the clock can advance a bit, hence the use of EXPECT_GE. in TestTimeStamp()
[all …]
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DZipArchiveInputStreamTest.java19 package org.apache.commons.compress.archivers.zip;
36 import java.util.zip.ZipException;
52 in = new ZipArchiveInputStream(new FileInputStream(getFile("test-winzip.zip"))); in winzipBackSlashWorkaround()
72 zf = new ZipFile(getFile("COMPRESS-189.zip")); in properUseOfInflater()
73 final ZipArchiveEntry zae = zf.getEntry("USD0558682-20080101.ZIP"); in properUseOfInflater()
94 .getResourceAsStream("/archive_with_trailer.zip"); in shouldConsumeArchiveCompletely()
95 final ZipArchiveInputStream zip = new ZipArchiveInputStream(is); in shouldConsumeArchiveCompletely() local
96 while (zip.getNextZipEntry() != null) { in shouldConsumeArchiveCompletely()
105 zip.close(); in shouldConsumeArchiveCompletely()
115 in = new ZipArchiveInputStream(new FileInputStream(getFile("COMPRESS-219.zip"))); in shouldReadNestedZip()
[all …]
/external/toybox/tests/
Dunzip.test7 # Note: since "master key", Android uses libziparchive for all zip file
14 testing "-l" "unzip -l $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/x.txt ] && echo okay" "\
15 Archive: $FILES/zip/example.zip\n\
24 testing "-lq" "unzip -lq $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/x.txt ] && echo okay" "\
33 testing "-lv" "unzip -lv $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/file ] && echo okay" "\
34 Archive: $FILES/zip/example.zip\n\
43 testing "-v" "unzip -v $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/file ] && echo okay" "\
44 Archive: $FILES/zip/example.zip\n\
53 testing "one file" "unzip -q $FILES/zip/example.zip d1/d2/a.txt && [ ! -f d1/d2/b.txt ] && cat d1/d…
55 testing "all files" "unzip -q $FILES/zip/example.zip && [ -f d1/d2/a.txt ] && [ -f d1/d2/b.txt ] &&…
[all …]
/external/python/cpython2/Doc/library/
Dzipimport.rst2 :mod:`zipimport` --- Import modules from Zip archives
6 :synopsis: support for importing Python modules from ZIP archives.
13 :file:`\*.py[co]`) and packages from ZIP-format archives. It is usually not
16 to ZIP archives.
19 also allows an item of :data:`sys.path` to be a string naming a ZIP file archive.
20 The ZIP archive can contain a subdirectory structure to support package imports,
22 subdirectory. For example, the path :file:`example.zip/lib/` would only
25 Any files may be present in the ZIP archive, but only files :file:`.py` and
26 :file:`.py[co]` are available for import. ZIP import of dynamic modules
29 corresponding :file:`.pyc` or :file:`.pyo` file, meaning that if a ZIP archive
[all …]
/external/oss-fuzz/projects/wolfssl/
DDockerfile19 RUN apt-get update && apt-get install -y make autoconf automake libtool zip wget python
34 …external.appspot.com/corpus/libFuzzer/bearssl_cryptofuzz-bearssl/public.zip $SRC/corpus_bearssl.zip
35 …pspot.com/corpus/libFuzzer/nettle_cryptofuzz-nettle-with-mini-gmp/public.zip $SRC/corpus_nettle.zip
36 …zz-external.appspot.com/corpus/libFuzzer/libecc_cryptofuzz-libecc/public.zip $SRC/corpus_libecc.zip
37 …rfuzz-external.appspot.com/corpus/libFuzzer/relic_cryptofuzz-relic/public.zip $SRC/corpus_relic.zip
38 …al.appspot.com/corpus/libFuzzer/cryptofuzz_cryptofuzz-openssl/public.zip $SRC/corpus_cryptofuzz.zip
39 ….com/corpus/libFuzzer/wolfssl_cryptofuzz-sp-math-all/public.zip $SRC/corpus_wolfssl_sp-math-all.zip
40 …s/libFuzzer/wolfssl_cryptofuzz-sp-math-all-8bit/public.zip $SRC/corpus_wolfssl_sp-math-all-8bit.zip
41 ….appspot.com/corpus/libFuzzer/wolfssl_cryptofuzz-sp-math/public.zip $SRC/corpus_wolfssl_sp-math.zip
42 …s/libFuzzer/wolfssl_cryptofuzz-disable-fastmath/public.zip $SRC/corpus_wolfssl_disable-fastmath.zip
[all …]
/external/rust/crates/zip/
DREADME.md1 zip-rs
4 …Status](https://img.shields.io/github/workflow/status/zip-rs/zip/CI)](https://github.com/zip-rs/zi…
5 [![Crates.io version](https://img.shields.io/crates/v/zip.svg)](https://crates.io/crates/zip)
8 [Documentation](https://docs.rs/zip/0.6.2/zip/)
10 > PSA: This version of the ZIP crate will not gain any new features,
17 A zip library for rust which supports reading and writing of simple ZIP files.
26 Currently unsupported zip extensions:
38 zip = "0.6.2"
45 zip = { version = "0.6.2", default-features = false }
51 * `deflate`: Enables the deflate compression algorithm, which is the default for zip files.
[all …]
/external/python/cpython3/Doc/library/
Dzipimport.rst1 :mod:`zipimport` --- Import modules from Zip archives
5 :synopsis: Support for importing Python modules from ZIP archives.
14 :file:`\*.pyc`) and packages from ZIP-format archives. It is usually not
17 to ZIP archives.
20 also allows an item of :data:`sys.path` to be a string naming a ZIP file archive.
21 The ZIP archive can contain a subdirectory structure to support package imports,
23 subdirectory. For example, the path :file:`example.zip/lib/` would only
26 Any files may be present in the ZIP archive, but importers are only invoked for
27 :file:`.py` and :file:`.pyc` files. ZIP import of dynamic modules
30 corresponding :file:`.pyc` file, meaning that if a ZIP archive
[all …]
/external/oss-fuzz/projects/mbedtls/
Dbuild.sh33 zip -r fuzz/fuzz_x509crl_seed_corpus.zip ../tests/data_files/crl* fuzz/corpuses/crl
34 zip -r fuzz/fuzz_x509crt_seed_corpus.zip ../tests/data_files/*.crt ../tests/data_files/dir*/*.crt …
35 zip -r fuzz/fuzz_x509csr_seed_corpus.zip ../tests/data_files/*.csr ../tests/data_files/*.req.*
36 zip -r fuzz/fuzz_privkey_seed_corpus.zip ../tests/data_files/*.key ../tests/data_files/*.pem fuzz/c…
37 zip -r fuzz/fuzz_pubkey_seed_corpus.zip ../tests/data_files/*.pub ../tests/data_files/*.pubkey
38 zip -r fuzz/fuzz_dtlsclient_seed_corpus.zip fuzz/corpuses/dtlsclient
39 zip -r fuzz/fuzz_dtlsserver_seed_corpus.zip fuzz/corpuses/dtlsserver
40 zip -r fuzz/fuzz_client_seed_corpus.zip fuzz/corpuses/client
41 zip -r fuzz/fuzz_server_seed_corpus.zip fuzz/corpuses/server
46 cp fuzz_*_seed_corpus.zip $OUT/
/external/rust/crates/zip/examples/
Dwrite_dir.rs4 use zip::result::ZipError;
5 use zip::write::FileOptions;
15 const METHOD_STORED: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Stored);
22 const METHOD_DEFLATED: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Deflated);
28 const METHOD_DEFLATED: Option<zip::CompressionMethod> = None;
31 const METHOD_BZIP2: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Bzip2);
33 const METHOD_BZIP2: Option<zip::CompressionMethod> = None;
36 const METHOD_ZSTD: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Zstd);
38 const METHOD_ZSTD: Option<zip::CompressionMethod> = None;
69 method: zip::CompressionMethod, in zip_dir()
[all …]
/external/oss-fuzz/projects/grpc/
Dbuild.sh131 zip "${OUT}/json_fuzzer_seed_corpus.zip" test/core/json/corpus/*
132 zip "${OUT}/uri_fuzzer_test_seed_corpus.zip" test/core/uri/uri_corpus/*
133 zip "${OUT}/request_fuzzer_seed_corpus.zip" test/core/http/request_corpus/*
134 zip "${OUT}/response_fuzzer_seed_corpus.zip" test/core/http/response_corpus/*
135 zip "${OUT}/fuzzer_response_seed_corpus.zip" test/core/nanopb/corpus_response/*
136 zip "${OUT}/fuzzer_serverlist_seed_corpus.zip" test/core/nanopb/corpus_serverlist/*
137 zip "${OUT}/percent_decode_fuzzer_seed_corpus.zip" test/core/slice/percent_decode_corpus/*
138 zip "${OUT}/percent_encode_fuzzer_seed_corpus.zip" test/core/slice/percent_encode_corpus/*
139 zip "${OUT}/hpack_parser_fuzzer_seed_corpus.zip" test/core/transport/chttp2/hpack_parser_corpus/*
140 zip "${OUT}/client_fuzzer_seed_corpus.zip" test/core/end2end/fuzzers/client_fuzzer_corpus/*
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-zip.hpp10 /*! \file rx-zip.hpp
27 \snippet zip.cpp zip sample
28 \snippet output.txt zip sample
31 \snippet zip.cpp Coordination zip sample
32 \snippet output.txt Coordination zip sample
35 \snippet zip.cpp Selector zip sample
36 \snippet output.txt Selector zip sample
39 \snippet zip.cpp Coordination+Selector zip sample
40 \snippet output.txt Coordination+Selector zip sample
136 struct zip : public operator_base<rxu::value_type_t<zip_traits<Coordination, Selector, ObservableN.… struct
[all …]
/external/protobuf/protoc-artifacts/
Dbuild-zip.sh14 repository and create .zip packages suitable to be included in the github
16 included. Each invocation will create 8 zip packages:
17 dist/<TARGET>-<VERSION_NUMBER>-win32.zip
18 dist/<TARGET>-<VERSION_NUMBER>-win64.zip
19 dist/<TARGET>-<VERSION_NUMBER>-osx-x86_32.zip
20 dist/<TARGET>-<VERSION_NUMBER>-osx-x86_64.zip
21 dist/<TARGET>-<VERSION_NUMBER>-linux-x86_32.zip
22 dist/<TARGET>-<VERSION_NUMBER>-linux-x86_64.zip
23 dist/<TARGET>-<VERSION_NUMBER>-linux-aarch_64.zip
24 dist/<TARGET>-<VERSION_NUMBER>-linux-ppcle_64.zip
[all …]
/external/oss-fuzz/projects/firefox/
Dbuild.sh102 -type f -exec zip -qu $OUT/SdpParser_seed_corpus.zip "{}" \;
107 -type f -exec zip -qu $OUT/StunParser_seed_corpus.zip "{}" \;
114 zip -rj $OUT/ImageGIF_seed_corpus.zip $SRC/fuzzdata/samples/gif
118 zip -rj $OUT/ImageICO_seed_corpus.zip $SRC/fuzzdata/samples/ico
121 zip -rj $OUT/ImageBMP_seed_corpus.zip $SRC/fuzzdata/samples/bmp
124 zip -rj $OUT/MediaADTS_seed_corpus.zip $SRC/fuzzdata/samples/aac
127 zip -rj $OUT/MediaFlac_seed_corpus.zip $SRC/fuzzdata/samples/flac
130 zip -rj $OUT/MediaMP3_seed_corpus.zip $SRC/fuzzdata/samples/mp3
133 zip -rj $OUT/MediaOgg_seed_corpus.zip $SRC/fuzzdata/samples/ogg
136 zip -rj $OUT/MediaWebM_seed_corpus.zip $SRC/fuzzdata/samples/webm
[all …]
/external/angle/third_party/zlib/google/test/data/
Dcreate_test_zip.sh7 # Run this script in its directory to recreate test.zip, test_nocompress.zip,
8 # and test_encrypted.zip
10 rm test.zip
11 rm test_nocompress.zip
12 rm test_encrypted.zip
14 zip -r ../test.zip .
15 zip -r -0 ../test_nocompress.zip .
16 zip -P "fake_password" -r ../test_encrypted.zip .
/external/zlib/google/test/data/
Dcreate_test_zip.sh7 # Run this script in its directory to recreate test.zip, test_nocompress.zip,
8 # and test_encrypted.zip
10 rm test.zip
11 rm test_nocompress.zip
12 rm test_encrypted.zip
14 zip -r ../test.zip .
15 zip -r -0 ../test_nocompress.zip .
16 zip -P "fake_password" -r ../test_encrypted.zip .

12345678910>>...163