Searched defs:zipfile (Results 1 - 25 of 36) sorted by last modified time

12

/external/sepolicy/tools/
H A Dpost_process_mac_perms31 import zipfile namespace
39 with zipfile.ZipFile(filename, 'r') as apkzip:
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jar ... zip.ZipEntry entry java.util.zip.ZipFile zipFile Exception e java.io.File file String ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dworkspace.py33 import zipfile namespace
58 def create_zip(self, zip_path, source_path, zip_class=zipfile.ZipFile):
H A Dzipfileset.py25 import zipfile namespace
43 return (temp_file, zipfile.ZipFile(temp_file))
H A Dzipfileset_unittest.py27 import zipfile namespace
/external/chromium_org/tools/android/adb_profile_chrome/
H A Dprofiler_unittest.py8 import zipfile namespace
72 self.assertTrue(zipfile.is_zipfile(result))
73 with zipfile.ZipFile(result) as f:
H A Dtrace_packager.py10 import zipfile namespace
38 with zipfile.ZipFile(output, 'w', zipfile.ZIP_DEFLATED) as z:
/external/chromium_org/tools/
H A Dbisect-builds.py58 import zipfile namespace
294 zf = zipfile.ZipFile(filename)
352 def RunRevision(context, revision, zipfile, profile, num_runs, command, args):
359 UnzipFilenameToDir(zipfile, tempdir)
420 def __init__(self, context, name, rev, zipfile):
426 self.zipfile = zipfile
434 self.zipfile,
446 os.unlink(self.zipfile)
524 zipfile
[all...]
H A Dbisect-perf-regression.py52 import zipfile namespace
550 zf = zipfile.ZipFile(filename)
H A Dupdate_reference_build.py39 import zipfile namespace
282 if not zipfile.is_zipfile(dl_file):
285 with zipfile.ZipFile(dl_file, 'r') as z:
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dupload.py9 import zipfile namespace
42 file_zip = zipfile.ZipFile(filename_zip, 'w', zipfile.ZIP_DEFLATED)
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Dmock_gsutil.py9 import zipfile namespace
22 zip_file = zipfile.ZipFile(sys.argv[4], 'r')
/external/chromium_org/tools/perf/profile_creators/
H A Dextensions_profile_creator.py15 import zipfile namespace
69 crx_zip = zipfile.ZipFile(crx_path)
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dandroid_systrace_profiler.py8 import zipfile namespace
61 with zipfile.ZipFile(self._output_path, 'w', zipfile.ZIP_DEFLATED) as z:
H A Dandroid_systrace_profiler_unittest.py7 import zipfile namespace
26 assert zipfile.is_zipfile(result)
27 with zipfile.ZipFile(result) as z:
/external/chromium_org/tools/telemetry/telemetry/
H A Dtest.py10 import zipfile namespace
139 with zipfile.ZipFile(generated_profile_archive_path) as f:
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dfind_dependencies.py12 import zipfile namespace
171 with zipfile.ZipFile(options.zip, 'w', zipfile.ZIP_DEFLATED) as zip_file:
180 link_info = zipfile.ZipInfo(
/external/chromium_org/remoting/host/installer/
H A Dbuild-installer-archive.py22 import zipfile namespace
58 """Creates a zipfile at zip_path for the given directory.
65 zip = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
155 # We don't use the 'zipfile' module here because it doesn't restore all the
/external/chromium_org/remoting/tools/
H A Dzip2msi.py55 import zipfile namespace
61 archive = zipfile.ZipFile(source, 'r')
/external/chromium_org/remoting/webapp/
H A Dbuild-webapp.py25 import zipfile namespace
48 """Creates a zipfile at zip_path for the given directory."""
50 zip = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
80 """Does the main work of building the webapp directory and zipfile.
86 zipfile: A string with path to the zipfile to create containing the
258 # Make the zipfile.
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dsdktools_test.py14 import zipfile namespace
162 zip_stream = zipfile.ZipFile(nacl_sdk_zip_path, 'r')
/external/chromium_org/native_client_sdk/src/tools/
H A Doshelpers.py15 import zipfile namespace
306 """Changes a path into zipfile format.
326 # zipfile paths are always posix-style. They also have the drive
332 # zipfile also always appends a slash to a directory name.
346 parser = optparse.OptionParser(usage='usage: zip [Options] zipfile list')
393 zip_stream = zipfile.ZipFile(dest_zip, 'r')
398 # zipfile; the best you can do is rewrite the archive.
399 # Iterate through the zipfile to maintain file order.
424 zip_stream = zipfile.ZipFile(dest_zip, write_mode, zipfile
[all...]

Completed in 597 milliseconds

12