Searched refs:cwd (Results 1 - 5 of 5) sorted by relevance
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/ |
H A D | FilePath.java | 127 String cwd = getCwdAbsolute(); 128 if (cwd.length() > 2 && 129 cwd.charAt(0) != File.separatorChar && 130 cwd.charAt(1) == ':') { 135 String drive = cwd.substring(0,2); 158 String cwd = getCwdAbsolute(); 159 if (cwd.length() > 2 && 160 cwd.charAt(0) != File.separatorChar && 161 cwd.charAt(1) == ':') {
|
/glassfish-3.1.2/tests/quicklook/admin/src/test/admin/ |
H A D | JdbcConnectionPoolTests.java | 66 String cwd = System.getProperty("user.dir"); 67 path = new File(cwd, relative);
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | java_md.winnt.c | 128 char *cwd = NULL; local 131 cwd = (char *)MemAlloc(size); 132 while (GetCurrentDirectory(size, cwd) >= size) 135 free(cwd); 136 cwd = (char *)MemAlloc(size); 138 tmppath = (char *)MemAlloc(strlen(cwd) + strlen(path) + 2); 139 sprintf(tmppath, "%s" FILE_SEPARATOR "%s", cwd, path); 140 free(cwd); 141 cwd = NULL;
|
H A D | java.c | 831 char *cwd = NULL; local 833 while ((cwd = getcwd(NULL, size)) == NULL) 835 execpath = Resolve(cwd, program); 836 free(cwd); 837 cwd = NULL; 1026 char *cwd = NULL; local 1305 if (cwd) 1307 free(cwd); 1308 cwd = NULL;
|
H A D | java_md.unix.c | 158 char *cwd = NULL; local 164 while ((cwd = getcwd(NULL, size)) == NULL) 167 tmppath = Resolve(cwd, path); 168 if (cwd) 169 free(cwd); 170 cwd = NULL;
|
Completed in 44 milliseconds