Lines Matching refs:path

90  * desired data model path, regardless if data models matched or not. The
92 * LD_LIBRARY_PATH path available, for the runtime linker.
103 * a. if the LD_LIBRARY_PATH's first component is the the path to the desired
222 JvmExists(const char *path) {
225 JLI_Snprintf(tmp, PATH_MAX, "%s/%s", path, JVM_DLL);
239 char *path;
243 /* fastest path */
260 * we have a suspicious path component, check if it contains a libjvm.so
263 for (path = JLI_StrTok(envpath, ":"); path != NULL; path = JLI_StrTok(NULL, ":")) {
264 if (clientPatternFound && JLI_StrStr(path, clientPattern) != NULL) {
265 if (JvmExists(path)) {
270 if (serverPatternFound && JLI_StrStr(path, serverPattern) != NULL) {
271 if (JvmExists(path)) {
307 * path.) The launcher uses the value of LD_LIBRARY_PATH to prevent an exec
323 * previous versions of the JRE, thus it is the only path that matters here.
379 char* newpath = NULL; /* path on new LD_LIBRARY_PATH */
513 /* exec child can do error checking on the existence of the path */
551 * The vm uses LD_LIBRARY_PATH to set the java.library.path system
616 /* remove the name of the .so from the JVM path */
637 * Check to make sure that the prefix of the current path is the
693 * If the data model is being changed, the path to the
780 * Find path to JRE based on .exe's location or registry settings.
783 GetJREPath(char *path, jint pathsize, const char * arch, jboolean speculative)
787 if (GetApplicationHome(path, pathsize)) {
789 JLI_Snprintf(libjava, sizeof(libjava), "%s/lib/%s/" JAVA_DLL, path, arch);
791 JLI_TraceLauncher("JRE path is %s\n", path);
796 JLI_Snprintf(libjava, sizeof(libjava), "%s/jre/lib/%s/" JAVA_DLL, path, arch);
798 JLI_StrCat(path, "/jre");
799 JLI_TraceLauncher("JRE path is %s\n", path);
814 JLI_TraceLauncher("JVM path is %s\n", jvmpath);
895 * In order to re-exec securely we need the absolute path of the
897 * path so we use dladdr to get the filename of the executable and
898 * then use realpath to derive an absolute path. From Solaris 9