Searched refs:zipfile (Results 1 - 25 of 52) sorted by path

123

/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
H A DLibraryLoader.java160 String zipfile = null;
162 zipfile = context.getApplicationInfo().sourceDir;
163 Log.i(TAG, "Loading " + library + " from within " + zipfile);
171 if (zipfile != null) {
172 Linker.loadLibraryInZipFile(zipfile, library);
184 if (zipfile != null) {
185 Linker.loadLibraryInZipFile(zipfile, library);
H A DLinker.java713 * The shared library is uncompressed and page aligned inside the zipfile.
717 * @param zipfile The filename of the zipfile contain the library.
720 public static void loadLibraryInZipFile(String zipfile, String library) { argument
721 loadLibraryMaybeInZipFile(zipfile, library);
876 * Native method used to load a library which is inside a zipfile.
/external/chromium_org/base/android/jni_generator/
H A Djni_generator.py19 import zipfile namespace
1383 jar_file = zipfile.ZipFile(jar_file)
/external/chromium_org/build/android/gn/
H A Dzip.py14 import zipfile namespace
20 with zipfile.ZipFile(output, 'w') as outfile:
/external/chromium_org/build/android/gyp/
H A Djar_toc.py24 import zipfile namespace
74 classes = GetClassesInZipFile(zipfile.ZipFile(jar_path))
H A Dprocess_resources.py18 import zipfile namespace
140 # Python zipfile does not provide a way to replace a file (it just writes
150 with zipfile.ZipFile(zip_path, 'w') as outzip:
161 with zipfile.ZipFile(output_path, 'w') as outzip:
163 with zipfile.ZipFile(z, 'r') as inzip:
/external/chromium_org/build/android/gyp/util/
H A Dbuild_utils.py17 import zipfile namespace
200 with zipfile.ZipFile(zip_path) as z:
219 with zipfile.ZipFile(output, 'w') as outfile:
226 with zipfile.ZipFile(output, 'w') as outfile:
243 with zipfile.ZipFile(output, 'w') as out_zip:
245 with zipfile.ZipFile(in_file, 'r') as in_zip:
/external/chromium_org/build/
H A Dget_syzygy_binaries.py21 import zipfile namespace
284 archive = zipfile.ZipFile(cStringIO.StringIO(data))
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
H A Dupload_chromevox_to_webstore.py24 from zipfile import ZipFile
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcontent_provider_test.py9 from zipfile import ZipFile
146 zipfile = ZipFile(StringIO(content_and_type.content))
147 content_and_type.content = zipfile.namelist()
156 zipfile = ZipFile(StringIO(content_and_type.content))
157 content_and_type.content = zipfile.namelist()
H A Ddirectory_zipper.py7 from zipfile import ZipFile
H A Ddirectory_zipper_test.py8 from zipfile import ZipFile
H A Dgithub_file_system.py18 from zipfile import ZipFile, BadZipfile
H A Dnew_github_file_system.py10 from zipfile import ZipFile
H A Dnew_github_file_system_test.py13 from zipfile import ZipFile
33 'zipfile/': '',
34 'zipfile/hello.txt': 'world',
35 'zipfile/readme': 'test zip',
36 'zipfile/dir/file1': 'contents',
37 'zipfile/dir/file2': 'more contents'
72 self.files['zipfile/hello.txt'] = fake_data
73 self.files['zipfile/new-file'] = fake_data
74 self.files['zipfile/dir/file1'] = fake_data
99 zipfile
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dembed_extension_in_cpp.py13 import zipfile namespace
27 zipper = zipfile.ZipFile(string_buffer, 'w')
29 zipper.write(f, os.path.basename(f), zipfile.ZIP_STORED)
H A Dutil.py16 import zipfile namespace
98 f = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
/external/chromium_org/components/policy/tools/
H A Dmake_policy_zip.py14 import zipfile namespace
75 zip_file = zipfile.ZipFile(options.output, 'w', zipfile.ZIP_DEFLATED)
/external/chromium_org/mojo/public/tools/bindings/generators/
H A Dmojom_java_generator.py14 import zipfile namespace
366 with zipfile.ZipFile(zip_filename, 'w') as zip_file:
/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...]
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Doshelpers_test.py12 import zipfile namespace
54 self.zipfile = None
60 if self.zipfile:
61 self.zipfile.close()
76 self.zipfile = zipfile.ZipFile(self.GetTempPath(self.zipname), 'r')
79 self.zipfile.close()
80 self.zipfile = None
83 return self.zipfile.getinfo(oshelpers.OSMakeZipPath(path))
95 self.assertEqual(len(self.zipfile
[all...]
/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.

Completed in 462 milliseconds

123