Searched refs:outfile (Results 1 - 21 of 21) sorted by relevance

/openjdk9/jdk/test/jdk/security/JavaDotSecurity/
H A Difdefs.sh51 outfile \
58 diff -b outfile $TESTSRC/final_java_security
/openjdk9/jdk/test/java/net/httpclient/
H A DEchoHandler.java56 File outfile = File.createTempFile("foo", "bar");
57 FileOutputStream fos = new FileOutputStream(outfile);
61 InputStream is1 = new FileInputStream(outfile);
79 outfile.delete();
H A DHttpEchoHandler.java56 File outfile = File.createTempFile("foo", "bar");
57 FileOutputStream fos = new FileOutputStream(outfile);
61 InputStream is1 = new FileInputStream(outfile);
79 outfile.delete();
/openjdk9/jdk/test/java/net/httpclient/http2/server/
H A DEchoHandler.java41 File outfile = File.createTempFile("foo", "bar");
42 //System.err.println ("QQQ = " + outfile.toString());
43 FileOutputStream fos = new FileOutputStream(outfile);
48 InputStream is1 = new FileInputStream(outfile);
68 outfile.delete();
H A DHttp2EchoHandler.java41 File outfile = File.createTempFile("foo", "bar");
42 //System.err.println ("QQQ = " + outfile.toString());
43 FileOutputStream fos = new FileOutputStream(outfile);
48 InputStream is1 = new FileInputStream(outfile);
68 outfile.delete();
/openjdk9/jdk/make/src/classes/build/tools/module/
H A DGenModuleLoaderMap.java51 Path outfile = null;
64 outfile = Paths.get(arg);
73 if (outfile == null) {
80 boolean needsQuotes = outfile.toString().contains(".java.tmp");
82 try (BufferedWriter bw = Files.newBufferedWriter(outfile, StandardCharsets.UTF_8);
H A DGenModuleInfoSource.java67 Path outfile = null;
77 outfile = Paths.get(arg);
104 if (moduleInfoJava == null || outfile == null ||
114 genModuleInfo.generate(outfile);
/openjdk9/langtools/test/tools/javac/4846262/
H A DNative2Ascii.java52 public void asciiToNative(Path infile, Path outfile) throws IOException { argument
55 BufferedWriter writer = Files.newBufferedWriter(outfile, cs)) {
67 public void nativeToAscii(Path infile, Path outfile) throws IOException { argument
69 BufferedWriter out = Files.newBufferedWriter(outfile, US_ASCII);
/openjdk9/jdk/test/tools/jmod/hashes/
H A DHashesTest.java419 Path outfile = lib.resolve(moduleName + ".jmod");
424 outfile.toString());
426 if (Files.exists(outfile)) {
428 Files.delete(outfile);
446 Path outfile = lib.resolve(moduleName + ".jar");
449 "--file=" + outfile.toString()),
456 if (Files.exists(outfile)) {
458 Files.delete(outfile);
/openjdk9/jdk/test/tools/jlink/plugins/
H A DExcludeJmodSectionPluginTest.java308 Path outfile = JMODS_DIR.resolve(name + ".jmod");
324 args.add(outfile.toString());
326 if (Files.exists(outfile))
327 Files.delete(outfile);
337 return outfile;
H A DLegalFilePluginTest.java361 Path outfile = JMODS_DIR.resolve(name + ".jmod");
371 args.add(outfile.toString());
373 if (Files.exists(outfile))
374 Files.delete(outfile);
384 return outfile;
/openjdk9/jdk/test/java/lang/ProcessBuilder/
H A DPipelineTest.java172 File outfile = new File("test.out");
180 b.redirectOutput(outfile);
186 String result = fileContents(outfile);
/openjdk9/jdk/make/src/classes/build/tools/jigsaw/
H A DModuleSummary.java54 private static final String USAGE = "Usage: ModuleSummary --module-path <dir> -o <outfile> [--root mn]*";
59 Path outfile = null;
68 outfile = Paths.get(args[i++]);
77 if (outfile == null || modpath == null) {
81 Path dir = outfile.getParent() != null ? outfile.getParent() : Paths.get(".");
95 genReport(outfile, modules, roots, "JDK Module Summary");
98 static void genReport(Path outfile, Map<String, ModuleSummary> modules, Set<String> roots, String title) argument
102 try (PrintStream out = new PrintStream(Files.newOutputStream(outfile))) {
/openjdk9/jdk/test/java/util/Currency/
H A DPropertiesTest.java48 private static void dump(String outfile) { argument
49 File f = new File(outfile);
/openjdk9/jdk/make/src/classes/build/tools/generatebreakiteratordata/
H A DCharacterCategory.java585 private static final String outfile = "CharacterCategoryTest.java"; field in class:CharacterCategory
593 FileWriter fout = new FileWriter(outfile);
633 System.err.println("Error occurred on accessing " + outfile);
638 System.out.println("\n" + outfile + " has been generated.");
/openjdk9/langtools/test/tools/jdeps/
H A DDotFileTest.java198 private Map<String,String> parse(Path outfile) throws IOException { argument
200 for (String line : Files.readAllLines(outfile)) {
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java346 String outfile = newfile.equals("")? jarfile: newfile;
348 if (outfile.equals("-"))
351 fileOut = new FileOutputStream(outfile);
/openjdk9/jdk/src/jdk.pack/share/native/common-unpack/
H A Dzip.cpp595 const char* outfile = u->jarout->jarname; local
597 if (outfile != null) {
598 remove(outfile);
/openjdk9/jdk/test/java/lang/invoke/indify/
H A DIndify.java268 File outfile;
271 outfile = classPathFile(dest, cf.nameString());
273 outfile = f; // overwrite input file, no matter where it is
275 cf.writeTo(outfile);
276 if (!quiet) System.err.println("wrote "+outfile);
/openjdk9/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djpeglib.h914 EXTERN(void) jpeg_stdio_dest JPP((j_compress_ptr cinfo, FILE * outfile));
/openjdk9/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_PrintJob.cpp3062 static FILE* outfile = NULL;

Completed in 226 milliseconds