Searched refs:outputFile (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/management/
H A DHotSpotDiagnosticMXBean.java53 * Dumps the heap to the <tt>outputFile</tt> file in the same
57 * the heap dump output is written to a file named <tt>outputFile</tt>
58 * on the machine where the target VM is running. If outputFile is
62 * @param outputFile the system-dependent filename
65 * @throws IOException if the <tt>outputFile</tt>
68 * @throws NullPointerException if <tt>outputFile</tt> is <tt>null</tt>.
70 public void dumpHeap(String outputFile, boolean live) throws java.io.IOException; argument
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/
H A DMain.java98 File outputFile = null;
138 outputFile = new File(outputFileName);
139 if (outputFile.exists() && !outputFile.canWrite()) {
175 if (outputFile.exists()) {
180 outputFile.delete();
182 tempFile.renameTo(outputFile);
/openjdk7/jdk/test/tools/pack200/
H A DPackageVersionTest.java109 File outputFile = new File(name + ".java");
110 outputFile.delete();
112 fos = new FileOutputStream(outputFile);
/openjdk7/langtools/test/tools/javadoc/lib/
H A DTester.java45 private final File outputFile = new File(TEST_CLASSES, "testrun.out"); field in class:Tester
82 out = new BufferedWriter(new FileWriter(outputFile));
84 throw new Error("Could not open output file " + outputFile);
96 System.out.println("--> Output written to " + outputFile);
108 new BufferedReader(new FileReader(outputFile));
119 throw new Error(outputFile + ":" + lineNum +
/openjdk7/jdk/src/share/classes/sun/management/
H A DHotSpotDiagnostic.java43 public native void dumpHeap(String outputFile, boolean live) throws IOException; argument
/openjdk7/jdk/test/javax/imageio/plugins/bmp/
H A DBMPSubsamplingTest.java136 File outputFile = new File("subsampling_test_" +
140 ImageIO.createImageOutputStream(outputFile);
150 BufferedImage outputImage = ImageIO.read(outputFile);
/openjdk7/hotspot/test/runtime/6925573/
H A DSortMethodsTest.java186 Kind kind, FileObject outputFile) throws IOException {
185 getJavaFileForOutput(Location location, String qualifiedName, Kind kind, FileObject outputFile) argument
/openjdk7/jdk/src/share/classes/java/awt/color/
H A DICC_Profile.java1282 FileOutputStream outputFile;
1287 outputFile = new FileOutputStream(fileName);
1288 outputFile.write(profileData);
1289 outputFile.close ();

Completed in 66 milliseconds