Searched refs:command (Results 76 - 100 of 113) sorted by relevance

12345

/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestUserDoclet.java60 .command(javadoc.getPath(),
/openjdk7/jdk/test/java/util/zip/
H A DInflateIn_DeflateOut.java224 String command = "PING " + count + "\r\n";
225 os.write(command.getBytes());
233 equal(buf.toString(), command);
/openjdk7/langtools/test/tools/javac/parser/netbeans/
H A DJavacParserTest.java189 for (String command : commands) {
194 + " " + command + " {\n"
212 int len = code.indexOf(command + " {") + (command + " ").length();
213 assertEquals(command, len,
215 assertEquals(command, len,
227 for (String command : commands) {
233 + " " + command + " {\n"
253 int len = code.indexOf(command + " {") + (command
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DFileCredentialsCache.java505 final String[] command = new String[v.size()];
506 v.copyInto(command);
514 return (Runtime.getRuntime().exec(command));
524 // exception occured in execing the command
532 if ((command.length == 1) &&
533 (command[0].equals("/usr/bin/env"))) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectHistogramPanel.java239 String command = evt.getActionCommand();
241 if (command.equals(ShowAction.VALUE_COMMAND)) {
243 } else if (command.equals(FindAction.VALUE_COMMAND)) {
/openjdk7/jdk/src/share/back/
H A DoutStream.h56 jbyte flags, jbyte commandSet, jbyte command);
H A Dtransport.c369 launch(char *command, char *name, char *address) argument
376 /* Construct complete command line (all in UTF-8) */
377 commandLine = jvmtiAllocate((int)strlen(command) +
383 (void)strcpy(commandLine, command);
H A DoutStream.c57 jbyte flags, jbyte commandSet, jbyte command)
66 stream->packet.type.cmd.cmd = command;
56 outStream_initCommand(PacketOutputStream *stream, jint id, jbyte flags, jbyte commandSet, jbyte command) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DAbstractLauncher.java62 String[] tokenizeCommand(String command, char quote) { argument
66 * Tokenize the command, respecting the given quote character.
68 StringTokenizer tokenizer = new StringTokenizer(command,
113 * An unclosed quote at the end of the command. Do an
/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuItem.java127 * This field indicates the command tha has been issued
480 * Sets the command name of the action event that is fired
483 * By default, the action command is set to the label of
485 * @param command the action command to be set
490 public void setActionCommand(String command) { argument
491 actionCommand = command;
495 * Gets the command name of the action event that is fired
H A DTrayIcon.java525 * Returns the command name of the action event fired by this tray icon.
527 * @return the action command name, or <code>null</code> if none exists
536 * Sets the command name for the action event fired by this tray
537 * icon. By default, this action command is set to
540 * @param command a string used to set the tray icon's
541 * action command.
546 public void setActionCommand(String command) { argument
547 actionCommand = command;
/openjdk7/jdk/src/share/classes/sun/tools/jcmd/
H A DJCmd.java137 private static void executeCommandForPid(String pid, String command) argument
145 String lines[] = command.split("\\n");
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintService.java221 String command = "/usr/bin/lpstat -a " + printer;
222 String results[]= UnixPrintServiceLookup.execCmd(command);
253 String command = "/usr/sbin/lpc status " + printer
255 String results[]= UnixPrintServiceLookup.execCmd(command);
305 String command = "/usr/bin/lpstat -R " + printer;
306 String results[]= UnixPrintServiceLookup.execCmd(command);
321 String command = "/usr/sbin/lpc status " + printer
323 String results[] = UnixPrintServiceLookup.execCmd(command);
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DWinGammaPlatform.java492 String command = it.get();
494 BuildConfig.putField(null, "PrelinkCommand", command);
513 String command = it.get();
515 BuildConfig.putField(null, "PostbuildCommand", command);
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessImpl.java157 /* Parses the command string parameter into the executable name and
160 * The command string is broken into tokens. The token separator is a space
164 private static String[] getTokensFromCommand(String command) { argument
166 Matcher regexMatcher = LazyPattern.PATTERN.matcher(command);
176 // We guarantee the only command file execution for implicit [cmd.exe] run.
198 // The code protects the [java.exe] and console command line
207 // command line parser. The case of the [""] tail escape
358 // Restore original command line.
360 // terminal space in command line is ok
364 // Parse the command lin
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java169 /** the java command */
171 private transient String[] command; field in class:Activation
1220 getTextResource("rmid.exec.command"),
1358 // argv is the literal command to exec
1364 : command[0]);
1366 // Group-specific command options
1387 /* Finally, rmid-global command options (e.g. -C options)
1390 for (int i = 1; i < command.length; i++) {
1391 argv.add(command[i]);
1404 * Check exec command usin
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DResolver.java353 * @param command The command to send the resolver.
360 String command,
364 String RFC2483 = resolver + "?command=" + command
359 queryResolver(String resolver, String command, String arg1, String arg2) argument
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java66 * <code>RowSet</code> object's command
100 * When a rowset gets its data from a relational database, it executes a command (a query)
101 * that produces a <code>ResultSet</code> object. This query is the command that is set
102 * for the <code>RowSet</code> object's command property. The rowset populates itself with data by reading the
110 * object <code>crs</code> might have its command property set. Note that if a
128 * before it sends the command to the DBMS to be executed.
143 * <code>Ref</code> objects as a command parameter, stores these values as
160 * parameters in the command.
181 * command. The second element is the value to
270 * execute the <code>RowSet</code> object's command
363 private String command; field in class:BaseRowSet
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Djmm.h148 JMM_VMGLOBAL_ORIGIN_COMMAND_LINE = 2, /* Set at command line (or JNI invocation) */
329 jstring command);
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c855 const char *command; local
870 command = (char *) JNU_GetStringPlatformChars(env, jcommand, NULL);
871 c[0] = (char *)command;
881 JNU_ReleaseStringPlatformChars(env, jcommand, command);
/openjdk7/jdk/src/share/javavm/export/
H A Djmm.h148 JMM_VMGLOBAL_ORIGIN_COMMAND_LINE = 2, /* Set at command line (or JNI invocation) */
329 jstring command);
/openjdk7/hotspot/make/windows/
H A Dbuild.bat31 REM Note: Running this batch file from the Windows command shell requires
/openjdk7/make/scripts/
H A Dvsvars.sh368 createBat() # batfile bindir command
372 command="$3"
375 echo "Output from: ${command}" > ${stdout}
391 call `${cygpath_windows} ${bdir}`\\${command} > `${cygpath_windows} "${stdout}"`
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingUtilities.java1607 * <code>action</code> is enabled (and non-{@code null}). The command for the
1611 * <code>registerKeyboardAction</code>, then the command string
1639 // Get the command object.
1651 String command;
1654 command = commandO.toString();
1657 command = String.valueOf(event.getKeyChar());
1662 command = null;
1665 ActionEvent.ACTION_PERFORMED, command, event.getWhen(),
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java568 * Sets this <code>CachedRowSetImpl</code> object's command property
570 * if any, that were set for the previous command.
572 * The command property may not be needed
578 * that will be set as the command; may be <code>null</code>
601 * <code>execute</code>, such as the <code>command</code> property,
606 * <code>CachedRowSetImpl</code> object's command.
1413 * The query specified by the command property is executed to create a
3461 * is row 2, and so on. For example, the following command, in which
3475 * the following command moves the cursor to the fourth-to-last row, which
3555 * For example, the following command, i
6826 buildTableName(String command) argument
[all...]

Completed in 90 milliseconds

12345