Lines Matching refs:jrepath
938 char *jrepath = NULL;
939 if ((jrepath = GetJREPath(envvar)) != NULL)
942 if ((version = CheckJREVersion(jrepath)) != NULL)
946 info->path = jrepath;
947 if (IsJDK(jrepath))
960 jrepath = NULL;
982 char *jrepath = NULL;
987 if ((jrepath = GetJREPath(javapath)) != NULL)
989 if ((version = CheckJREVersion(jrepath)) != NULL)
993 info->path = jrepath;
994 if (IsJDK(jrepath))
1007 jrepath = NULL;
1059 char *jrepath = NULL;
1065 if ((jrepath = GetJREPath(javapath))!= NULL)
1067 if ((version = CheckJREVersion(jrepath)) != NULL)
1071 info->path = jrepath;
1072 if (IsJDK(jrepath))
1909 ExecuteJava(const char *jrepath, int numOptions, const JavaVMOption *options,int numProps, const JavaPropsOption *props)
1940 command = (char *)MemAlloc(strlen(jrepath) + (console ? strlen(JAVA_EXE) : strlen(JAVAW_EXE)) + 1);
1941 strcpy(command, jrepath);