Searched defs:launcher (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/make/launchers/ |
H A D | Makefile | 35 # Run MAKE $@ for a launcher for the corba module: 36 # $(call make-launcher, name, mainclass, java-args, main-args) 37 define make-corba-launcher 39 $(MAKE) -f Makefile.launcher \ 49 $(call make-launcher, appletviewer, sun.applet.Main, , ) 58 $(call make-launcher, apt, com.sun.tools.apt.Main, , ) 59 $(call make-launcher, extcheck, com.sun.tools.extcheck.Main, , ) 60 $(call make-launcher, idlj, com.sun.tools.corba.se.idl.toJavaPortable.Compile, , ) 61 $(call make-launcher, jar, sun.tools.jar.Main, , ) 62 $(call make-launcher, jarsigne [all...] |
/openjdk7/jdk/src/macosx/classes/apple/launcher/ |
H A D | JavaAppLauncher.java | 26 package apple.launcher;
|
/openjdk7/jdk/test/java/util/Locale/data/ |
H A D | deflocale.c | 35 * Usage: "deflocale.exe <java launcher> PrintDefaultLocale 43 wchar_t* launcher; variable 66 if (CreateProcess(NULL, launcher, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)==0) { 197 launcher = wcschr(commandline, L' ')+1; 198 while (*launcher == L' ') { 199 launcher++;
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | Launcher.java | 57 private static Launcher launcher = new Launcher(); field in class:Launcher 62 return launcher;
|
/openjdk7/jdk/src/share/classes/sun/launcher/ |
H A D | LauncherHelper.java | 26 package sun.launcher; 39 * The following are helper methods that the native launcher uses 81 private static final String diagprop = "sun.java.launcher.diag"; 85 "sun.launcher.resources.launcher"; 92 * A method called by the launcher to print out the standard settings, 102 * initialHeapSize: in bytes, as set by the launcher, a zero-value indicates 106 * maxHeapSize: in bytes, as set by the launcher, a zero-value indicates 109 * stackSize: in bytes, as set by the launcher, a zero-value indicates 328 outBuf = outBuf.append(getLocalizedMessage("java.launcher [all...] |
/openjdk7/jdk/src/macosx/bin/ |
H A D | java_md_macosx.c | 80 * Flowchart of launcher execs and options processing on unix 88 * virtual machine; they must be screened out by the launcher. 92 * the exec of the specified launcher version. 94 * Now, in most cases,the launcher will dlopen the target libjvm.so. All 97 * in most cases, the launcher will only exec, if the data models are 575 * VM choosing is done by the launcher (java.c). 761 // The handle is good for both the launcher and the libosxapp.dylib 911 * line option from Java launcher code to the AWT code in order 917 * passing this information from Java launcher to other modules may 931 * line option from Java launcher cod 1047 JavaLaunchHelper* launcher = [[[JavaLaunchHelper alloc] init] autorelease]; local [all...] |
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | arguments.cpp | 125 // Process java launcher properties. 127 // See if sun.java.launcher or sun.java.launcher.pid is defined. 129 // as some of them may depend on launcher type. 134 if (match_option(option, "-Dsun.java.launcher=", &tail)) { 138 if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) { 959 } else if (strcmp(key, "sun.java.launcher.pid") == 0) { 960 // launcher.pid property is private and is processed 962 // the sun.java.launcher property is passed on to the java application 1655 void Arguments::process_java_launcher_argument(const char* launcher, voi argument [all...] |
Completed in 93 milliseconds