Searched refs:envcp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/serialver/
H A DSerialVer.java222 String envcp = null;
239 envcp = new String(args[i+1]);
255 if (envcp == null) {
256 envcp = System.getProperty("env.class.path");
260 if (envcp == null) {
261 envcp = ".";
266 initializeLoader(envcp);
268 System.err.println(Res.getText("error.parsing.classpath", envcp));
271 System.err.println(Res.getText("error.parsing.classpath", envcp));
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DContextManager.java339 String envcp = System.getProperty("env.class.path");
340 if ((envcp != null) && (envcp.length() > 0)) {
341 munged.append(" -classpath " + envcp);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassPath.java85 String envcp = System.getProperty("env.class.path");
86 if (envcp == null) envcp = ".";
87 String cp = syscp + File.pathSeparator + envcp;
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java331 String envcp = System.getProperty("env.class.path");
332 if (envcp == null) {
333 envcp = "."; // preserve old default behavior
335 URL[] urls = sun.misc.URLClassPath.pathToURLs(envcp);
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c1537 * -Denv.class.path=<envcp>
1540 * <envcp> is the user's setting of CLASSPATH -- for instance the user
1552 char *envcp, *appcp, *apphome; local
1563 envcp = (char *)JLI_MemAlloc(strlen(s) + 40);
1564 sprintf(envcp, "-Denv.class.path=%s", s);
1565 AddOption(envcp, NULL);
/openjdk7/jdk/src/share/bin/
H A Djava.c1285 * -Denv.class.path=<envcp>
1288 * <envcp> is the user's setting of CLASSPATH -- for instance the user
1299 char *envcp, *appcp, *apphome; local
1309 envcp = (char *)JLI_MemAlloc(JLI_StrLen(s) + 40);
1310 sprintf(envcp, "-Denv.class.path=%s", s);
1311 AddOption(envcp, NULL);

Completed in 55 milliseconds