Searched defs:jre (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/tools/pack200/
H A DCommandLineTests.java54 private static final File EXP_JRE_DIR = new File(EXP_SDK, "jre");
114 static void runPack200(boolean jre) throws IOException { argument
117 if (jre && f.getName().equals("tools.jar")) {
134 if (jre) {
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c173 * it as a valid jre/sdk.
207 * jre respecively as part of the 1.5 rebranding effort. Since the
228 if ((JLI_StrNCmp(dp->d_name, "jre", 3) == 0) ||
314 * Given a path to a jre to execute, this routine checks if this process
315 * is indeed that jre. If not, it exec's that jre.
323 ExecJRE(char *jre, char **argv) argument
332 if (realpath(jre, wanted) == NULL) {
333 JLI_ReportErrorMessage(JRE_ERROR9, jre);
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c359 /* Does this app ship a private JRE in <apphome>\jre directory? */
360 sprintf(javadll, "%s\\jre\\bin\\" JAVA_DLL, path);
362 strcat(path, "\\jre");
1069 * Given a path to a jre to execute, this routine checks if this process
1070 * is indeed that jre. If not, it exec's that jre.
1078 ExecJRE(char *jre, char **argv) { argument
1115 printf("ExecJRE: new: %s\n", jre);
1123 if (strnicmp(jre, path, strlen(jre))
[all...]
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c63 * two data models and cohabitation of jre/jdk bits with both data
706 sprintf(libjava, "%s/jre/lib/" JAVA_DLL, path);
708 strcat(path, "/jre");
718 /* Does the app ship a private JRE in <apphome>/jre directory? */
719 sprintf(libjava, "%s/jre/lib/%s/" JAVA_DLL, path, arch);
721 strcat(path, "/jre");
1547 * it as a valid jre/sdk.
1581 * jre respecively as part of the 1.5 rebranding effort. Since the
1602 if ((strncmp(dp->d_name, "jre", 3) == 0) ||
1687 * Given a path to a jre t
1696 ExecJRE(char *jre, char **argv) argument
[all...]
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c97 * of the jre exec'd through the SelectVersion routine. The command line
99 * because that jre may be an older version which wouldn't recognize them.
905 char *jre = NULL; local
953 } else if (strcmp(arg, "-jre-restrict-search") == 0) {
955 } else if (strcmp(arg, "-no-jre-restrict-search") == 0) {
1086 * jre, check to see if the one running will satisfy the requirements.
1090 jre = LocateJRE(&info);
1094 (info.jre_restrict_search?"true":"false"), (jre?jre:"null"));
1095 if (jre
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c729 char *jre = NULL; local
777 } else if (JLI_StrCmp(arg, "-jre-restrict-search") == 0) {
779 } else if (JLI_StrCmp(arg, "-no-jre-restrict-search") == 0) {
907 * jre, check to see if the one running will satisfy the requirements.
911 jre = LocateJRE(&info);
914 (info.jre_restrict_search?"true":"false"), (jre?jre:"null"));
916 if (jre == NULL) {
948 ExecJRE(jre, new_argv);
1051 JLI_StrCmp(arg, "-no-jre
[all...]
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c317 /* Does this app ship a private JRE in <apphome>\jre directory? */
318 JLI_Snprintf(javadll, sizeof (javadll), "%s\\jre\\bin\\" JAVA_DLL, path);
320 JLI_StrCat(path, "\\jre");
905 * Given a path to a jre to execute, this routine checks if this process
906 * is indeed that jre. If not, it exec's that jre.
914 ExecJRE(char *jre, char **argv) { argument
930 JLI_TraceLauncher("ExecJRE: new: %s\n", jre);
937 if (JLI_StrNCaseCmp(jre, path, JLI_StrLen(jre))
[all...]

Completed in 67 milliseconds