Searched refs:destfile (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp95 const char* destfile = PerfMemory::get_perfdata_file_path(); local
96 assert(destfile[0] != '\0', "invalid PerfData file path");
100 RESTARTABLE(::open(destfile, O_CREAT|O_WRONLY|O_TRUNC, S_IREAD|S_IWRITE),
105 destfile, os::strerror(errno));
116 destfile, os::strerror(errno));
128 warning("Could not close %s: %s\n", destfile, os::strerror(errno));
132 FREE_C_HEAP_ARRAY(char, destfile);
/openjdk10/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp95 const char* destfile = PerfMemory::get_perfdata_file_path(); local
96 assert(destfile[0] != '\0', "invalid PerfData file path");
100 RESTARTABLE(::open(destfile, O_CREAT|O_WRONLY|O_TRUNC, S_IREAD|S_IWRITE),
105 destfile, os::strerror(errno));
116 destfile, os::strerror(errno));
128 warning("Could not close %s: %s\n", destfile, os::strerror(errno));
132 FREE_C_HEAP_ARRAY(char, destfile);
/openjdk10/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp91 const char* destfile = PerfMemory::get_perfdata_file_path(); local
92 assert(destfile[0] != '\0', "invalid Perfdata file path");
94 int fd = ::_open(destfile, _O_BINARY|_O_CREAT|_O_WRONLY|_O_TRUNC,
100 destfile, os::strerror(errno));
109 destfile, os::strerror(errno));
121 warning("Could not close %s: %s\n", destfile, os::strerror(errno));
126 FREE_C_HEAP_ARRAY(char, destfile);
/openjdk10/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp98 const char* destfile = PerfMemory::get_perfdata_file_path(); local
99 assert(destfile[0] != '\0', "invalid PerfData file path");
103 RESTARTABLE(::open(destfile, O_CREAT|O_WRONLY|O_TRUNC, S_IREAD|S_IWRITE),
108 destfile, os::strerror(errno));
120 destfile, os::strerror(errno));
131 warning("Could not close %s: %s\n", destfile, os::strerror(errno));
135 FREE_C_HEAP_ARRAY(char, destfile);
/openjdk10/hotspot/src/os/aix/vm/
H A DperfMemory_aix.cpp96 const char* destfile = PerfMemory::get_perfdata_file_path(); local
97 assert(destfile[0] != '\0', "invalid PerfData file path");
101 RESTARTABLE(::open(destfile, O_CREAT|O_WRONLY|O_TRUNC, S_IREAD|S_IWRITE),
106 destfile, os::strerror(errno));
117 destfile, os::strerror(errno));
129 warning("Could not close %s: %s\n", destfile, os::strerror(errno));
133 FREE_C_HEAP_ARRAY(char, destfile);
/openjdk10/langtools/test/jdk/javadoc/doclet/lib/
H A DJavadocTester.java606 * @param destfile the destination file
610 public void copyFile(File destfile, File srcfile) throws IOException { argument
611 Files.copy(srcfile.toPath(), destfile.toPath());
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DUtils.java333 DocFile destfile = destdir.resolve(srcfile.getName());
335 if (destfile.exists() && !first) {
341 destfile.copyFile(srcfile);

Completed in 160 milliseconds