Searched refs:tmpPath (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsEnv.cpp235 WCHAR tmpPath[MAX_PATH + 1]; local
279 && swprintf(tmpPath, MAX_PATH, L"%s%s", systemRoot, fontPath + 12) != -1) {
280 fontPath = tmpPath;
289 swprintf(tmpPath, MAX_PATH, L"%s\\FONTS\\EUDC.TTE", systemRoot);
290 fontPath = tmpPath;
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java1019 Path tmpPath = createTempFileInSameDirectoryAs(jarFile).toPath();
1022 Files.newOutputStream(tmpPath),
1025 Files.move(tmpPath, jarPath, REPLACE_EXISTING);
1031 Files.deleteIfExists(tmpPath);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java213 String tmpPath = options.destDir.getAbsolutePath()+ File.pathSeparator+options.classpath;
214 ClassLoader classLoader = new URLClassLoader(Options.pathToURLs(tmpPath),
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java839 Path tmpPath = createTempFileInSameDirectoryAs(zfpath);
844 Files.copy(is, tmpPath, REPLACE_EXISTING);
848 return tmpPath;
1094 Path tmpPath = File.createTempFile("zipfstmp", null, new File(dir)).toPath();
1095 tmppaths.add(tmpPath);
1096 return tmpPath;

Completed in 41 milliseconds