Searched refs:packFile (Results 1 - 5 of 5) 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 DPack200Test.java78 File packFile = new File(in.getName() + Utils.PACK_FILE_EXT);
82 Utils.pack(jarFile, packFile);
91 Utils.unpackj(packFile, javaUnpackerStream);
103 Utils.unpackn(packFile, nativeUnpackerStream);
H A DT7007157.java43 File packFile = new File("foo.pack");
59 fos = new FileOutputStream(packFile);
H A DUtils.java315 static void pack(JarFile jarFile, File packFile) throws IOException { argument
329 fos = new FileOutputStream(packFile);

Completed in 33 milliseconds