OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:JarFile
(Results
1 - 13
of
13
) sorted by null
/dalvik/vm/
JarFile.h
26
struct
JarFile
{
36
* On success, returns 0 and sets "*ppJarFile" to a newly-allocated
JarFile
.
40
JarFile
** ppJarFile, bool isBootstrap);
43
* Free a
JarFile
structure, along with any associated structures.
45
void dvmJarFileFree(
JarFile
* pJarFile);
47
/* pry the DexFile out of a
JarFile
*/
48
INLINE DvmDex* dvmGetJarFileDex(
JarFile
* pJarFile) {
53
INLINE const char* dvmGetJarFileCacheFileName(
JarFile
* pJarFile) {
/libcore/luni/src/main/java/java/util/jar/
JarFile.java
32
* {@code
JarFile
} is used to read jar entries and their associated data from
38
public class
JarFile
extends ZipFile {
144
* Create a new {@code
JarFile
} using the contents of the specified file.
151
public
JarFile
(File file) throws IOException {
156
* Create a new {@code
JarFile
} using the contents of the specified file.
165
public
JarFile
(File file, boolean verify) throws IOException {
174
* Create a new {@code
JarFile
} using the contents of file.
186
public
JarFile
(File file, boolean verify, int mode) throws IOException {
195
* Create a new {@code
JarFile
} from the contents of the file specified by
203
public
JarFile
(String filename) throws IOException
[
all
...]
/libcore/luni/src/test/java/libcore/java/util/jar/
OldJarFileTest.java
23
import java.util.jar.
JarFile
;
37
new
JarFile
(new File("Wrong.file"));
43
new
JarFile
(new File(resources, jarName));
48
new
JarFile
("Wrong.file");
55
new
JarFile
(fileName);
60
new
JarFile
("Wrong.file", false);
67
new
JarFile
(fileName, true);
72
new
JarFile
(new File("Wrong.file"), true);
78
new
JarFile
(new File(resources, jarName), false);
83
new
JarFile
(new File("Wrong.file"), true
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 825 milliseconds