Home
last modified time | relevance | path

Searched refs:enableZipPathValidator (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/jar/
DJarFile.java175 public JarFile(String name, boolean enableZipPathValidator, boolean verify) throws IOException { in JarFile() argument
176 this(new File(name), enableZipPathValidator, verify, ZipFile.OPEN_READ); in JarFile()
181 public JarFile(File file, boolean enableZipPathValidator, boolean verify, int mode) throws in JarFile() argument
183 super(file, mode, enableZipPathValidator); in JarFile()
/libcore/luni/src/main/java/libcore/io/
DClassPathURLStreamHandler.java50 public ClassPathURLStreamHandler(String jarFileName, boolean enableZipPathValidator) throws in ClassPathURLStreamHandler() argument
52 jarFile = new JarFile(jarFileName, enableZipPathValidator, /* verify */ true); in ClassPathURLStreamHandler()
/libcore/ojluni/src/main/java/java/util/zip/
DZipFile.java246 public ZipFile(File file, int mode, boolean enableZipPathValidator) throws IOException { in ZipFile() argument
247 this(file, mode, StandardCharsets.UTF_8, enableZipPathValidator); in ZipFile()
254 public ZipFile(File file, int mode, Charset charset, boolean enableZipPathValidator) in ZipFile() argument
283 boolean isZipPathValidatorEnabled = enableZipPathValidator && !ZipPathValidator.isClear(); in ZipFile()
779 int mode, boolean enableZipPathValidator) throws IOException { in CleanableResource() argument
783 this.zsrc = Source.get(file, (mode & OPEN_DELETE) != 0, zc, enableZipPathValidator); in CleanableResource()