Searched defs:cwd (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava.c831 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 Djava_md.winnt.c128 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 Djava_md.unix.c158 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 766 milliseconds