Searched defs:packFile (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/tools/pack200/
H A DUnpackerMemoryTest.java42 private static void createPackFile(File packFile) throws IOException { argument
46 String jarFileName = Utils.baseName(packFile, Utils.PACK_FILE_EXT)
55 Utils.pack(jarFile, packFile);
65 File packFile = new File(name + Utils.PACK_FILE_EXT);
66 createPackFile(packFile);
67 if (!packFile.exists()) {
68 throw new RuntimeException(packFile + " not found");
77 System.out.println("Unpacking[" + i + "]" + packFile);
78 Utils.unpackn(packFile, jarOS);
H A DTimeStamp.java62 File packFile = new File("golden.pack");
66 Utils.pack(goldenJarFile, packFile);
71 unpackJava(packFile, istFile);
77 unpackJava(packFile, pstFile);
83 unpackNative(packFile, istFile);
88 unpackNative(packFile, pstFile);
93 static void unpackNative(File packFile, File outFile) { argument
109 cmdsList.add(packFile.getName());
114 static void unpackJava(File packFile, File outFile) throws IOException { argument
122 Utils.unpackj(packFile, jo
[all...]
H A DUtils.java315 static void pack(JarFile jarFile, File packFile) throws IOException { argument
329 fos = new FileOutputStream(packFile);

Completed in 40 milliseconds