HomeSort by relevance Sort by last modified time
    Searched refs:unzip (Results 1 - 25 of 511) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/commands/unzip/
unzip_tests.sh 24 # Tests basic functionality of unzip command.
31 TST_NEEDS_CMDS="unzip"
78 EXPECT_PASS unzip "$TST_DATAROOT/test.zip" \> unzip.out
80 if diff -w unzip_exp.out unzip.out; then
81 tst_res TPASS "Unzip output is correct"
83 tst_res TFAIL "Unzip output is incorrect"
84 cat unzip.out
  /external/r8/src/main/java/com/android/tools/r8/utils/
ZipUtils.java 32 public static List<File> unzip(String zipFile, File outDirectory) throws IOException { method in class:ZipUtils
33 return unzip(zipFile, outDirectory, (entry) -> true);
36 public static List<File> unzip(String zipFile, File outDirectory, Predicate<ZipEntry> filter) method in class:ZipUtils
  /external/zlib/src/contrib/minizip/
make_vms.com 15 $ cc/include=[--]/prefix=all unzip.c
18 $ link miniunz,unzip,ioapi,[--]libz.olb/lib
Makefile 4 UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a
  /prebuilts/android-emulator/
update_emulator.sh 18 unzip $linux_zip
25 unzip $mac_zip
  /system/bt/tools/scripts/
viewbtsnoop.sh 55 unzip "${BUGREPORT}" -d "${TMPDIR}"
  /external/dagger2/
deploy_website.sh 36 unzip javadoc.zip -d javadoc
  /external/gemmlowp/scripts/
ci-before.sh 4 unzip android-ndk-${NDK_VERSION}-linux-x86_64.zip 2> /dev/null > /dev/null
  /external/okhttp/okio/
deploy_javadoc.sh 28 unzip javadoc.zip
  /external/protobuf/src/google/protobuf/compiler/
zip_output_unittest.sh 60 if unzip -h > /dev/null; then
61 unzip -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list || fail 'unzip failed.'
72 echo "Warning: 'unzip' command not available. Skipping test."
  /external/skia/infra/bots/
zip_utils_test.py 35 # Zip, unzip.
37 zip_utils.unzip('test.zip', 'output')
53 # Zip, unzip.
55 zip_utils.unzip('test.zip', 'output')
  /development/scripts/
combine_sdks.sh 57 unzip $Q "$BASE" -d "$BASE_DIR"
58 unzip $Q "$IMAGES" -d "$IMAGES_DIR"
  /external/brotli/fuzz/
test_fuzzer.sh 20 unzip ../java/org/brotli/integration/fuzz_data.zip -d decode_corpora
  /external/protobuf/
autogen.sh 35 unzip -q gmock-1.7.0.zip
  /external/protobuf/util/
autogen.sh 35 unzip -q gmock-1.7.0.zip
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipInputStreamTest.java 43 assertEquals(Arrays.toString(data), Arrays.toString(unzip("short", zipped)));
49 assertTrue(Arrays.equals(data, unzip("r", ZipOutputStreamTest.zip("r", data))));
52 public static byte[] unzip(String name, byte[] bytes) throws IOException { method in class:ZipInputStreamTest
ZipOutputStreamTest.java 45 assertEquals(Arrays.toString(data), Arrays.toString(ZipInputStreamTest.unzip("short", zipped)));
52 assertEquals(Arrays.toString(data), Arrays.toString(ZipInputStreamTest.unzip("z", zipped)));
58 assertTrue(Arrays.equals(data, ZipInputStreamTest.unzip("r", zip("r", data))));
  /system/update_engine/scripts/
brillo_update_payload 371 if unzip -p "${image}" "META/ab_partitions.txt" >"${ab_partitions_list}"; then
395 if ! unzip -p "${image}" "META/update_engine_config.txt" \
415 ZLIB_FINGERPRINT=$(unzip -p "${image}" "META/zlib_fingerprint.txt")
421 if unzip -p "${image}" "META/postinstall_config.txt" \
431 unzip -p "${image}" "IMAGES/${part}.img" >"${part_file}"
450 unzip -p "${image}" "IMAGES/${part}.map" >"${part_map_file}" || \
  /dalvik/dx/tests/127-merge-stress/
run 45 # Filter out jar files and apks that do not unzip or contain a
49 # to unzip them.
51 unzip -l "$dex" 2>&1 | grep -q -m 1 classes.dex
  /external/libmojo/
build_mojom_jar.mk 26 for f in $(PRIVATE_SRCJAR_LIST); do unzip -qo -d $(PRIVATE_TARGET) $$f; done)
  /external/v8/tools/
fuzz-harness.sh 71 unzip "$jsfunfuzz_file" -d "$jsfunfuzz_dir" || exit 1
  /external/v8/tools/jsfunfuzz/
fuzz-harness.sh 49 unzip "$jsfunfuzz_file" -d "$jsfunfuzz_dir" || exit 1
  /build/make/tools/
dump-package-stats 36 Packages must be zipfiles, readable using "unzip".
80 unzip -lvq "$file" | awk '
88 # Make sure the output of unzip -lv looks like something we expect.
  /external/autotest/server/hosts/
emulated_adb_host.py 139 unzip=True)
141 unzip=True)
153 brilloemulator_arm-target_files-123456.zip, and unzip it.
263 unzip = self.teststation.run('which unzip')
265 return bool(adb and qemu and unzip)
  /external/elfutils/libdwfl/
gzip.c 37 # define unzip __libdw_unlzma macro
50 # define unzip __libdw_bunzip2 macro
63 # define unzip __libdw_gunzip macro
169 unzip (int fd, off_t start_offset, function

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 91011>>