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.java257 public ZipFile(File file, int mode, boolean enableZipPathValidator) throws IOException { in ZipFile() argument
258 this(file, mode, StandardCharsets.UTF_8, enableZipPathValidator); in ZipFile()
265 public ZipFile(File file, int mode, Charset charset, boolean enableZipPathValidator) in ZipFile() argument
267 isZipPathValidatorEnabled = enableZipPathValidator && !ZipPathValidator.isClear(); in ZipFile()