Searched refs:home (Results 1 - 25 of 25) sorted by relevance

/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DJdiLoadedByCustomLoader.java42 String home = System.getProperty("java.home");
45 File f2 = (new File(home, tools)).getCanonicalFile();
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSunSDK.java36 * Returns the home directory of a Java 2 SDK if the current
39 static String home() { method in class:SunSDK
40 File jreHome = new File(System.getProperty("java.home"));
/openjdk7/jdk/test/java/rmi/server/RemoteObject/verifyRemoteEquals/
H A DVerifyRemoteEquals.java189 TestHome home = new TestHomeImpl(test);
192 Test test1 = ((TestHome) RemoteObject.toStub(home)).get();
193 Test test2 = ((TestHome) RemoteObject.toStub(home)).get();
222 TestLibrary.unexport(home);
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DCallerSensitiveFinder.java197 Path home = Paths.get(System.getProperty("java.home"));
199 if (home.endsWith("jre")) {
202 result.addAll(addJarFiles(home.resolve("lib")));
203 } else if (home.resolve("lib").toFile().exists()) {
205 File classes = home.resolve("classes").toFile();
211 result.addAll(addJarFiles(home.resolve("lib")));
213 throw new RuntimeException("\"" + home + "\" not a JDK home");
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DTestManager.java61 * JAR file normally in ${java.home}/jre/lib but may be in ${java.home}/lib
64 String home = System.getProperty("java.home");
65 String agent = home + File.separator + "jre" + File.separator + "lib"
69 agent = home + File.separator + "lib" + File.separator +
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSunCommandLineLauncher.java40 static private final String ARG_HOME = "home";
91 getString("sun.home.label"),
92 getString("sun.home"),
93 System.getProperty("java.home"),
146 String home = argument(ARG_HOME, arguments).value();
198 if (home.length() > 0) {
207 exePath = home + File.separator + "bin" + File.separator +
210 exePath = home + File.separator + "bin" + File.separator + exe;
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptJConsolePlugin.java204 String home = System.getProperty("user.home");
205 if (home == null) {
206 // no user.home?? should not happen??
209 String fileName = home + File.separator + "jconsole." + extension;
/openjdk7/jaxws/make/
H A DMakefile104 ANT_OPTIONS += -Djdk.home=$(ALT_BOOTDIR)
110 ANT_OPTIONS += -Djdk.home=$(ALT_JDK_IMPORT_PATH)
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassValue.java533 /** Look in the cache, at the home location for the given ClassValue. */
543 int home = (classValue.hashCodeForCache & mask);
544 Entry<?> e2 = cache[home]; // victim, if we find the real guy
546 return null; // if nobody is at home, no need to search nearby
550 for (int i = home + 1; i < home + PROBE_LIMIT; i++) {
556 // relocate colliding entry e2 (from cache[home]) to first empty slot
557 cache[home] = e;
690 /** Add the given entry to the cache, in its home location, unless it is out of date. */
697 /** Add the given entry to the cache, in its home locatio
[all...]
/openjdk7/jaxp/make/
H A DMakefile121 ANT_OPTIONS += -Djdk.home=$(ALT_BOOTDIR)
127 ANT_OPTIONS += -Djdk.home=$(ALT_JDK_IMPORT_PATH)
/openjdk7/langtools/make/
H A DMakefile133 ANT_OPTIONS += -Dboot.java.home=$(ALT_BOOTDIR)
168 ANT_OPTIONS += -Dfindbugs.home=$(FINDBUGS_HOME)
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c272 char *home; local
285 if ((home = getenv("HOME")) != NULL) {
286 path = (char *)JLI_MemAlloc(JLI_StrLen(home) + \
288 sprintf(path, "%s%s:%s", home, user_dir, system_dir);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DLocalVirtualMachine.java243 String home = vm.getSystemProperties().getProperty("java.home");
245 // Normally in ${java.home}/jre/lib/management-agent.jar but might
246 // be in ${java.home}/lib in build environments.
248 String agent = home + File.separator + "jre" + File.separator +
252 agent = home + File.separator + "lib" + File.separator +
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DArguments.java422 String userHome = System.getProperty("user.home");
424 File home = new File(userDir + "/" + filename);
425 sources.add(home.toURI().toURL());
/openjdk7/jdk/src/share/classes/sun/management/
H A DAgent.java174 // reads <java.home>/lib/management/management.properties
409 String home = System.getProperty("java.home");
410 if (home == null) {
411 throw new Error("Can't find java.home ??");
413 StringBuffer defaultFileName = new StringBuffer(home);
/openjdk7/jdk/test/com/sun/jdi/
H A DJdbReadTwiceTest.sh29 # @summary TTY: .jdbrc is read twice if jdb is run in the user's home dir
60 HOME="$baseDir/home"
79 echo quit | $TESTJAVA/bin/jdb -J-Duser.home=$HOME > $tmpResult 2>&1
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c1538 * -Dapplication.home=<apphome>
1553 char home[MAXPATHLEN]; /* application home */ local
1569 if (!GetApplicationHome(home, sizeof(home))) {
1570 ReportErrorMessage("Can't determine application home", JNI_TRUE);
1574 /* 40 for '-Dapplication.home=' */
1575 apphome = (char *)JLI_MemAlloc(strlen(home) + 40);
1576 sprintf(apphome, "-Dapplication.home=%s", home);
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c1286 * -Dapplication.home=<apphome>
1300 char home[MAXPATHLEN]; /* application home */ local
1315 if (!GetApplicationHome(home, sizeof(home))) {
1320 /* 40 for '-Dapplication.home=' */
1321 apphome = (char *)JLI_MemAlloc(JLI_StrLen(home) + 40);
1322 sprintf(apphome, "-Dapplication.home=%s", home);
1328 size += (int)JLI_StrLen(home)
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp1056 const char* home,
1078 // java home directory.
1083 strcpy(q, home);
1104 const char* home = Arguments::get_java_home();
1105 int home_len = (int)strlen(home);
1109 char* meta_index = format_boot_path(meta_index_format, home, home_len, fileSep, pathSep);
1111 char* meta_index_dir = format_boot_path(meta_index_dir_format, home, home_len, fileSep, pathSep);
1130 char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep);
H A Dos.hpp916 const char* home,
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dscriptpad.js649 * Load user specific init file under home dir, if found.
652 var home = java.lang.System.getProperty("user.home");
653 var f = new java.io.File(home, "scriptpad.js");
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c1646 char *home; local
1659 if ((home = getenv("HOME")) != NULL) {
1660 path = (char *)JLI_MemAlloc(strlen(home) + strlen(system_dir) +
1662 path = strcat(strcat(strcat(strcpy(path, home),
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DListHelper.java362 public void home() {} method in class:ListHelper
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java3022 * TreeHomeAction is used to handle end/home actions.
3046 SHARED_ACTION.home(tree, BasicTreeUI.this, direction,
4082 home(tree, ui, -1, false, true);
4085 home(tree, ui, -1, false, false);
4088 home(tree, ui, -1, true, true);
4091 home(tree, ui, 1, false, true);
4094 home(tree, ui, 1, false, false);
4097 home(tree, ui, 1, true, true);
4521 private void home(JTree tree, final BasicTreeUI ui, int direction, method in class:BasicTreeUI.Actions
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/resources/
H A Daliasmap61 alias java.property.java.home // 1.5.0 b39
62 java.home // 1.4.1

Completed in 131 milliseconds