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

12

/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/
H A DLaunchingConnector.java33 * A connector which can launch a target VM before connecting to it.
41 * of the launch (possibly including options,
63 * @throws java.io.IOException when unable to launch.
71 VirtualMachine launch(Map<String,? extends Connector.Argument> arguments) method in interface:LaunchingConnector
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDesktopPeer.java77 launch(file.toURI());
94 launch(uri);
98 launch(uri);
101 private void launch(URI uri) throws IOException { method in class:XDesktopPeer
/openjdk7/jdk/test/java/util/logging/
H A DClassLoaderLeakTest.java63 Method launch =
64 appMain.getDeclaredMethod("launch", doneSignal.getClass());
70 launch.invoke(o, doneSignal);
109 /* check if launch failed */
184 public void launch(CountDownLatch done) { method in class:AppTest
/openjdk7/jdk/test/com/sun/jdi/
H A DOnThrowTest.java27 * @summary Test for -agentlib::[onthrow,launch]
43 /* Full pathname for file to be touched or created by the launch */
139 String launch = System.getProperty("test.classes") +
141 File f = new File(launch);
149 throw new Exception("Test failed: sh file not created: " + launch);
158 "launch=" + "sh " + launch.replace('\\','/'),
161 /* Run the target app, which will launch the launch script */
168 System.out.println("Test passed: launch creat
[all...]
H A DExclusiveBind.java98 private static Process launch(String address, boolean suspend, String class_name) throws IOException { method in class:ExclusiveBind
143 // launch the first debuggee
144 Process process1 = launch(address, true, "HelloWorld");
149 // launch a second debuggee with the same address
150 Process process2 = launch(address, false, "HelloWorld");
H A DDoubleAgentTest.java91 private static Process launch(String address, String class_name) throws IOException { method in class:DoubleAgentTest
130 // launch the server debuggee
131 Process process = launch(address, "Exit0");
H A DBadHandshakeTest.java109 private static Process launch(String address, String class_name) throws IOException { method in class:BadHandshakeTest
150 // launch the server debuggee
151 Process process = launch(address, "Exit0");
H A DRunToExit.java114 private static Process launch(String address, String class_name) throws IOException { method in class:RunToExit
155 // launch the server debuggee
156 Process process = launch(address, "Exit0");
H A DRepStep.java152 /* launch child target vm */
164 vm = launcher.launch(connectorArgs);
/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DDebugUsingCustomConnector.java73 VirtualMachine vm = connector.launch(args);
H A DSimpleLaunchingConnector.java126 public VirtualMachine launch(Map<String, ? extends Connector.Argument> arguments) throws method in class:SimpleLaunchingConnector
140 * Listen on an emperical port; launch the debuggee; wait for
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DLauncher.java27 * A Launcher to launch a java process with its standard input, output,
42 private static void launch(String className, String options[], String args[], int fd) throws IOException { method in class:Launcher
77 launch(className, options, args, Util.getFD(sc2));
103 launch(className, options, args, Util.getFD(ssc));
119 * The launch process will inherited a bound UDP socket.
132 launch(className, options, args, Util.getFD(dc));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DRawCommandLineLauncher.java101 launch(Map<String,? extends Connector.Argument> arguments) method in class:RawCommandLineLauncher
118 return launch(tokenizeCommand(command, quote.charAt(0)),
H A DSunCommandLineLauncher.java140 launch(Map<String,? extends Connector.Argument> arguments) method in class:SunCommandLineLauncher
235 vm = launch(tokenizeCommand(command, quote.charAt(0)), address, listenKey,
H A DAbstractLauncher.java43 launch(Map<String,? extends Connector.Argument> arguments) method in class:AbstractLauncher
127 protected VirtualMachine launch(String[] commandArray, String address, method in class:AbstractLauncher
142 * This class simply provides a context for a single launch and
146 * one launch.
/openjdk7/jdk/test/javax/imageio/stream/StreamCloserLeak/testapp/
H A DMain.java39 o.launch(null);
50 public void launch(HashMap<String, ImageInputStream> refs) { method in class:Main
/openjdk7/jdk/test/javax/imageio/stream/StreamCloserLeak/test/
H A DMain.java90 launch(urls, "testapp.Main", "launch");
204 private static void launch(URL[] urls, final String className, method in class:Main
210 System.out.printf("%s: launch the app\n", uniqClassName);
218 Method launch = appMain.getDeclaredMethod(methodName,
229 launch.invoke(o, strongRefs);
232 launch.invoke(o, empty);
/openjdk7/jdk/test/sun/awt/font/
H A DClassLoaderLeakTest.java94 /* check if launch failed */
129 Method launch =
130 appMain.getMethod("launch", doneSignal.getClass());
136 launch.invoke(o, doneSignal);
201 public void launch(CountDownLatch done) { method in class:AppTest
/openjdk7/jdk/src/macosx/bundle/appbundler/native/
H A Dmain.m55 int launch(char *);
63 launch(argv[0]);
75 int launch(char *commandName) {
/openjdk7/hotspot/src/os/posix/launcher/
H A Dlauncher.script213 echo Error: Internal error, unknown launch mode \"$MODE\"
/openjdk7/jdk/src/share/classes/com/sun/tools/example/trace/
H A DTrace.java169 return connector.launch(arguments);
171 throw new Error("Unable to launch target VM: " + exc);
/openjdk7/jdk/src/share/back/
H A Dtransport.c369 launch(char *command, char *name, char *address) function
499 serror = launch(launchCommand, name, retAddress);
517 * Note that we don't attempt to do a launch here. Launching
/openjdk7/hotspot/test/runtime/7158988/
H A DFieldMonitor.java188 return (VirtualMachine) connector.launch(arguments);
190 throw new Error("Unable to launch target VM: " + exc);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DChildSession.java96 diagnostics.putString("Could not launch VM");
203 vm = connector.launch(arguments);
/openjdk7/jdk/src/macosx/classes/apple/launcher/
H A DJavaAppLauncher.java46 static void launch(final long javaDictionaryPtr, final boolean verbose) { method in class:JavaAppLauncher

Completed in 82 milliseconds

12