HomeSort by relevance Sort by last modified time
    Searched refs:Unzip (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/zlib/google/
zip.h 41 // Unzip the contents of zip_file into dest_dir.
42 bool Unzip(const base::FilePath& zip_file, const base::FilePath& dest_dir);
zip_unittest.cc 83 ASSERT_TRUE(zip::Unzip(path, test_dir_));
147 ASSERT_TRUE(zip::Unzip(zip_file, out_dir));
173 TEST_F(ZipTest, Unzip) {
185 // Unzip the zip file into a sub directory of test_dir_ so evil.zip
189 ASSERT_FALSE(zip::Unzip(path, output_dir));
205 ASSERT_FALSE(zip::Unzip(path, output_dir));
321 ASSERT_TRUE(zip::Unzip(test_zip_file, temp_dir));
zip.cc 20 #include <minizip/unzip.h>
23 #include "third_party/zlib/contrib/minizip/unzip.h"
95 bool Unzip(const base::FilePath& src_file, const base::FilePath& dest_dir) {
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
README 11 * Unzip the downloaded file.
15 * Unzip the downloaded file.
19 * Unzip the downloaded file.
23 * Unzip the downloaded file.
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
write_from_file_operation.cc 37 &WriteFromFileOperation::Unzip,
operation_unittest.cc 43 void Unzip(const base::Closure& continuation) {
44 Operation::Unzip(continuation);
124 &OperationForTest::Unzip, operation_, base::Bind(&base::DoNothing)));
148 &OperationForTest::Unzip, operation_, base::Bind(&base::DoNothing)));
operation.h 90 void Unzip(const base::Closure& continuation);
209 // Zip reader for unzip operations.
write_from_url_operation.cc 43 &WriteFromUrlOperation::Unzip,
operation.cc 90 void Operation::Unzip(const base::Closure& continuation) {
114 // Create a new target to unzip to. The original file is opened by the
  /external/chromium_org/chrome/browser/component_updater/
component_unpacker.h 45 // \_ Unzip
56 // \_ Unzip
119 // The second step of unpacking is to unzip. Returns false if an error
121 bool Unzip();
component_unpacker.cc 138 return Verify() && Unzip() && BeginPatching();
185 bool ComponentUnpacker::Unzip() {
194 if (!zip::Unzip(path_, destination)) {
  /external/chromium_org/chrome/test/chromedriver/
archive.py 67 util.Unzip(zip_path, dest_dir)
util.py 104 def Unzip(zip_path, output_dir):
105 """Unzips the given zip file using a system installed unzip tool.
108 zip_path: zip file to unzip.
109 output_dir: directory to unzip the contents of the zip file. The directory
113 RuntimeError if the unzip operation fails.
118 unzip_cmd = ['unzip', '-o']
121 raise RuntimeError('Unable to unzip %s to %s' % (zip_path, output_dir))
run_buildbot_steps.py 84 util.Unzip(zip_path, chrome_paths.GetBuildDir(['host_forwarder']))
282 util.Unzip(zip_path, temp_dir)
util.cc 96 if (!zip::Unzip(archive, unzip_dir))
97 return Status(kUnknownError, "could not unzip archive");
chrome_launcher.cc 76 if (!zip::Unzip(extension_zip, extension_dir))
77 return Status(kUnknownError, "failed to unzip automation extension");
543 // Unzip the crx file.
554 if (!zip::Unzip(extension_crx, extension_dir))
555 return Status(kUnknownError, "cannot unzip");
  /external/chromium_org/build/util/lib/common/
util.py 86 def Unzip(zip_path, output_dir):
87 """Unzips the given zip file using a system installed unzip tool.
90 zip_path: zip file to unzip.
91 output_dir: directory to unzip the contents of the zip file. The directory
95 RuntimeError if the unzip operation fails.
100 unzip_cmd = ['unzip', '-o']
103 raise RuntimeError('Unable to unzip %s to %s' % (zip_path, output_dir))
  /external/chromium_org/chrome/test/chromedriver/test/
run_java_tests.py 96 util.Unzip(os.path.join(java_tests_src_dir, 'common.zip'), test_dir)
128 util.Unzip(os.path.join(java_tests_src_dir, 'test-nodeps-srcs.jar'),
  /external/chromium_org/native_client_sdk/src/doc/
io2014.rst 96 Unzip the sample::
98 $ unzip voronoi.zip
  /external/chromium_org/chrome/utility/extensions/
unpacker.cc 181 if (!zip::Unzip(extension_path_, temp_install_dir_)) {
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager.cc 53 if (zip::Unzip(source_zip_file, source_zip_file.DirName())) {
406 // We have unzip in progress, maybe it was "cancelled" before and did not
  /build/core/
pdk_config.mk 100 _pdk_fusion_file_list := $(shell unzip -Z -1 $(PDK_FUSION_PLATFORM_ZIP) \
103 $(shell unzip -Z -1 $(PDK_FUSION_PLATFORM_ZIP) 'target/common/*' 2>/dev/null)
117 @echo "Unzip $(dir $@) <- $<"
119 $(hide) unzip -qo $< -d $(dir $@)

Completed in 2145 milliseconds