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

  /external/chromium/chrome/browser/extensions/
extension_creator.h 56 FilePath* zip_path);
59 bool SignZip(const FilePath& zip_path,
64 bool WriteCRX(const FilePath& zip_path,
extension_creator.cc 153 FilePath* zip_path) {
154 *zip_path = temp_path.Append(FILE_PATH_LITERAL("extension.zip"));
156 if (!Zip(extension_dir, *zip_path, false)) { // no hidden files
165 bool ExtensionCreator::SignZip(const FilePath& zip_path,
170 ScopedStdioHandle zip_handle(file_util::OpenFile(zip_path, "rb"));
188 bool ExtensionCreator::WriteCRX(const FilePath& zip_path,
226 ScopedStdioHandle zip_handle(file_util::OpenFile(zip_path, "rb"));
262 FilePath zip_path;
265 if (CreateZip(extension_dir, temp_dir.path(), &zip_path) &&
266 SignZip(zip_path, key_pair.get(), &signature) &
    [all...]
  /external/chromium/chrome/common/
zip_unittest.cc 27 FilePath zip_path(test_dir_);
28 zip_contents_.insert(zip_path.AppendASCII("foo.txt"));
29 zip_path = zip_path.AppendASCII("foo");
30 zip_contents_.insert(zip_path);
31 zip_contents_.insert(zip_path.AppendASCII("bar.txt"));
32 zip_path = zip_path.AppendASCII("bar");
33 zip_contents_.insert(zip_path);
34 zip_contents_.insert(zip_path.AppendASCII("baz.txt"))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
workspace.py 51 def create_zip(self, zip_path, source_path, zip_class=zipfile.ZipFile):
53 # zip_file = ZipFile(zip_path, 'w')
60 self._executive.run_command(['zip', '-r', zip_path, source_path])
61 return zip_class(zip_path)
  /external/chromium/chrome/common/extensions/docs/build/
directory.py 290 self['zip_path'] = self._get_relative_zip_path()
634 zip_path = os.path.join(sample_parentpath, zip_filename)
642 if os.path.isfile(zip_path):
644 old_zip_file = zipfile.ZipFile(zip_path, 'r')
646 raise Exception("Could not read zip at %s: %s" % (zip_path, msg))
648 raise Exception("File at %s is not a zip file: %s" % (zip_path, msg))
660 zip_file = zipfile.ZipFile(zip_path, 'w')
677 raise Exception("Could not write zip at %s: %s" % (zip_path, msg))
  /external/webkit/Tools/Scripts/webkitpy/common/net/
testoutputset.py 40 def from_zip_url(cls, platform, zip_path):
41 return TestOutputSet('local zip %s builder' % platform, platform, ZipFileSet(zip_path))
  /bootable/recovery/updater/
install.c 339 char* zip_path; local
341 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
348 bool success = mzExtractRecursive(za, zip_path, dest_path,
351 free(zip_path);
372 char* zip_path; local
374 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
377 const ZipEntry* entry = mzFindZipEntry(za, zip_path);
379 fprintf(stderr, "%s: no %s in package\n", name, zip_path);
393 free(zip_path);
400 char* zip_path; local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues.py 353 zip_path = self._tool.workspace.find_unused_filename(self._log_directory(), "%s-%s" % (patch.bug_id(), results_name), "zip")
354 if not zip_path:
356 archive = self._tool.workspace.create_zip(zip_path, results_directory)
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 730 def create_zip(self, zip_path, source_path):

Completed in 247 milliseconds