Searched defs:crtpath (Results 1 - 2 of 2) sorted by relevance
| /openjdk7/hotspot/src/os/windows/launcher/ |
| H A D | java_md.c | 236 char crtpath[MAXPATHLEN]; local 245 if (GetJREPath(crtpath, MAXPATHLEN)) { 246 (void)strcat(crtpath, "\\bin\\" CRT_DLL); /* Add crt dll */ 248 printf("CRT path is %s\n", crtpath); 250 if (_access(crtpath, 0) == 0) { 251 if (LoadLibrary(crtpath) == 0) { 252 ReportErrorMessage2("Error loading: %s", crtpath, JNI_TRUE);
|
| /openjdk7/jdk/src/windows/bin/ |
| H A D | java_md.c | 256 char crtpath[MAXPATHLEN]; local 277 if (GetJREPath(crtpath, MAXPATHLEN)) { 278 if (JLI_StrLen(crtpath) + JLI_StrLen("\\bin\\") + 283 (void)JLI_StrCat(crtpath, "\\bin\\" CRT_DLL); /* Add crt dll */ 284 JLI_TraceLauncher("CRT path is %s\n", crtpath); 285 if (_access(crtpath, 0) == 0) { 286 if (LoadLibrary(crtpath) == 0) { 287 JLI_ReportErrorMessage(DLL_ERROR4, crtpath);
|
Completed in 145 milliseconds