Searched refs:cwd (Results 1 - 13 of 13) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DServer.java54 String cwd; field in class:Server.CwdFileManager
62 return new File(cwd,name).getPath();
105 // fm.cwd=null;
106 String cwd = null;
109 cwd = line.substring(4);
123 Iterable<File> path = cwd == null ? null : Arrays.<File>asList(new File(cwd));
/openjdk7/jdk/test/tools/launcher/
H A DI18NJarTest.java52 private static final File cwd = new File("."); field in class:I18NJarTest
100 File[] classFiles = cwd.listFiles(TestHelper.createFilter(TestHelper.CLASS_FILE_EXT));
H A DArrrghs.java423 File cwd = new File(".");
424 File libDir = new File(cwd, "lib");
426 initEmptyDir(new File(cwd, "empty"));
/openjdk7/jdk/test/sun/net/ftp/
H A DFtpGetContent.java48 private String cwd; field in class:FtpGetContent.FtpServer
205 cwd = null;
240 if (cwd == null)
241 cwd = str.substring(4);
243 cwd = cwd + "/" + str.substring(4);
249 out.println("257 \"" + cwd + "\" is current directory");
415 return cwd;
H A DFtpURL.java46 private String cwd; field in class:FtpURL.FtpServer
204 cwd = null;
239 if (cwd == null)
240 cwd = str.substring(4);
242 cwd = cwd + "/" + str.substring(4);
248 out.println("257 \"" + cwd + "\" is current directory");
413 return cwd;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/
H A DResolvingXMLFilter.java320 URL cwd = null;
323 cwd = FileURL.makeURL("basename");
325 cwd = null;
331 if (cwd != null) {
333 baseURL = new URL(cwd, systemId);
H A DResolvingParser.java414 URL cwd = null;
417 cwd = FileURL.makeURL("basename");
419 cwd = null;
425 if (cwd != null) {
427 baseURL = new URL(cwd, systemId);
/openjdk7/langtools/test/tools/javac/classreader/
H A DT7031108.java74 File cwd = new File(".");
75 fm.setLocation(StandardLocation.CLASS_OUTPUT, Arrays.asList(cwd));
81 fm.setLocation(StandardLocation.CLASS_PATH, Arrays.asList(cwd));
/openjdk7/jdk/test/sun/security/pkcs11/
H A DPKCS11Test.java139 File cwd = new File(System.getProperty("test.src", ".")).getCanonicalFile();
141 File file = new File(cwd, "TEST.ROOT");
145 cwd = cwd.getParentFile();
146 if (cwd == null) {
150 PKCS11_BASE = new File(cwd, PKCS11_REL_PATH.replace('/', SEP)).getAbsolutePath();
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java67 byte[] cwd = UnixNativeDispatcher.getcwd();
68 boolean defaultIsCwd = (cwd.length == defaultDirectory.length);
70 for (int i=0; i<cwd.length; i++) {
71 if (cwd[i] != defaultDirectory[i]) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp925 const char *cwd = os::get_current_directory(buffer, sizeof(buffer)); local
926 size_t len = strlen(cwd);
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c246 char* cwd = getcwd(buf, sizeof(buf)); local
247 if (cwd == NULL) {
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp932 static const char* cwd; local
970 cwd = get_current_directory(NULL, 0);
971 jio_snprintf(buffer, bufferSize, "%s\\hs_err_pid%u.mdmp",cwd, current_process_id());

Completed in 503 milliseconds