/openjdk7/hotspot/test/runtime/NMT/ |
H A D | JcmdWithNMTDisabled.java | 55 public static void jcmdCommand(String command) throws Exception { argument 57 pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", command});
|
/openjdk7/jdk/src/share/classes/java/util/concurrent/ |
H A D | Executor.java | 131 * Executes the given command at some time in the future. The command 135 * @param command the runnable task 138 * @throws NullPointerException if command is null 140 void execute(Runnable command); argument
|
H A D | ScheduledExecutorService.java | 102 * @param command the task to execute 110 * @throws NullPointerException if command is null 112 public ScheduledFuture<?> schedule(Runnable command, argument 143 * @param command the task to execute 152 * @throws NullPointerException if command is null 155 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, argument 169 * @param command the task to execute 179 * @throws NullPointerException if command is null 182 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, argument
|
/openjdk7/jdk/src/share/classes/javax/smartcardio/ |
H A D | CardChannel.java | 78 * Transmits the specified command APDU to the Smart Card and returns the 81 * <p>The CLA byte of the command APDU is automatically adjusted to 96 * implementation should issue a <code>GET RESPONSE</code> command 103 * should reissue the command using <code>XX</code> as the 110 * @param command the command APDU 117 * <code>MANAGE CHANNEL</code> command 118 * @throws NullPointerException if command is null 121 public abstract ResponseAPDU transmit(CommandAPDU command) throws CardException; argument 124 * Transmits the command APD 163 transmit(ByteBuffer command, ByteBuffer response) argument [all...] |
H A D | Card.java | 82 * opened by issuing a <code>MANAGE CHANNEL</code> command that should use 133 * Transmits a control command to the terminal device. 138 * @param controlCode the control code of the command 139 * @param command the command data 144 * @throws NullPointerException if command is null 150 byte[] command) throws CardException; 149 transmitControlCommand(int controlCode, byte[] command) argument
|
/openjdk7/jdk/src/share/classes/sun/tools/asm/ |
H A D | Cover.java | 41 public Cover(int type, long addr, int command) { argument 44 NumCommand=command;
|
/openjdk7/jdk/test/javax/swing/JColorChooser/ |
H A D | Test4759934.java | 54 String command = event.getActionCommand(); 55 if (CMD_DIALOG.equals(command)) { 60 else if (CMD_CHOOSER.equals(command)) { 70 private void show(Window window, String command) { argument 71 JButton button = new JButton(command); 72 button.setActionCommand(command);
|
/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/ |
H A D | ProcessTools.java | 138 public static ProcessBuilder createJavaProcessBuilder(String... command) argument 145 Collections.addAll(args, command);
|
/openjdk7/hotspot/test/testlibrary/com/oracle/java/testlibrary/ |
H A D | ProcessTools.java | 129 public static ProcessBuilder createJavaProcessBuilder(String... command) throws Exception { argument 135 Collections.addAll(args, command);
|
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | Compiler.java | 125 public static native Object command(Object any); method in class:Compiler
|
H A D | ProcessBuilder.java | 51 * <li>a <i>command</i>, a list of strings which signifies the 53 * Which string lists represent a valid operating system command is 56 * systems where programs are expected to tokenize command line 134 * #start()} will fail. For example, setting the command attribute to 181 private List<String> command; field in class:ProcessBuilder 190 * make a copy of the {@code command} list. Subsequent 193 * {@code command} corresponds to a valid operating system 194 * command. 196 * @param command the list containing the program and its arguments 199 public ProcessBuilder(List<String> command) { argument 216 ProcessBuilder(String... command) argument 235 command(List<String> command) argument 253 command(String... command) argument 268 public List<String> command() { method in class:ProcessBuilder [all...] |
H A D | Runtime.java | 318 * Executes the specified string command in a separate process. 321 * <tt>exec(command)</tt> 323 * <tt>{@link #exec(String, String[], File) exec}(command, null, null)</tt>. 325 * @param command a specified system command. 338 * If <code>command</code> is <code>null</code> 341 * If <code>command</code> is empty 346 public Process exec(String command) throws IOException { argument 347 return exec(command, null, null); 351 * Executes the specified string command i 387 exec(String command, String[] envp) argument 441 exec(String command, String[] envp, File dir) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | SoftShortMessage.java | 43 public void setMessage(int command, int channel, int data1, int data2) argument 46 super.setMessage(command, channel & 0xF, data1, data2);
|
H A D | FastShortMessage.java | 101 public void setMessage(int command, int channel, int data1, int data2) throws InvalidMidiDataException { argument 102 getDataLength(command); // can throw InvalidMidiDataException 103 packedMsg = (command & 0xF0) | (channel & 0x0F) | ((data1 & 0xFF) << 8) | ((data2 & 0xFF) << 16);
|
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/ |
H A D | JDBToolBar.java | 88 // addTool("Display command list", "help", "help"); 97 private void addTool(String toolTip, String labelText, String command) { argument 100 final String cmd = command;
|
H A D | JDBMenuBar.java | 132 addTool(helpMenu, "Display command list", "Help", "help"); 186 String command) { 189 final String cmd = command; 185 addTool(JMenu menu, String toolTip, String labelText, String command) argument
|
/openjdk7/jdk/test/java/awt/regtesthelpers/process/ |
H A D | ProcessCommunicator.java | 50 private static String command = ""; field in class:ProcessCommunicator 67 String command = buildCommand(classToExecute, classPathArguments, args); 68 Process process = Runtime.getRuntime().exec(command); 136 /** Builds command on the basis of the passed class name, 143 * @return command to execute the {@code Process} 161 command = commandBuilder.toString(); 162 return command; 167 * @return command that was build to execute the child process 170 return command;
|
/openjdk7/jdk/src/share/classes/sun/tools/jcmd/ |
H A D | Arguments.java | 37 private String command = null; field in class:Arguments 44 public String getCommand() { return command; } 95 throw new IllegalArgumentException("No command specified"); 98 command = sb.toString().trim(); 108 command = sb.toString(); 113 System.out.println("Usage: jcmd <pid | main class> <command ...|PerfCounter.print|-f file>"); 117 System.out.println(" command must be a valid jcmd command for the selected jvm. "); 118 System.out.println(" Use the command \"help\" to see which commands are available. ");
|
H A D | JCmd.java | 137 private static void executeCommandForPid(String pid, String command) argument 145 String lines[] = command.split("\\n");
|
/openjdk7/jdk/src/share/classes/java/awt/event/ |
H A D | ActionEvent.java | 144 * A <code>null</code> <code>command</code> string is legal, 151 * @param command A string that may specify a command (possibly one 158 public ActionEvent(Object source, int id, String command) { argument 159 this(source, id, command, 0); 168 * A <code>null</code> <code>command</code> string is legal, 175 * @param command A string that may specify a command (possibly one 187 public ActionEvent(Object source, int id, String command, int modifiers) { argument 188 this(source, id, command, 223 ActionEvent(Object source, int id, String command, long when, int modifiers) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/ |
H A D | Resolver.java | 353 * @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/sound/midi/ |
H A D | ShortMessage.java | 41 * the upper four bits of the status byte are specified by a command value and 245 * @param command the MIDI command represented by this message 249 * @throws InvalidMidiDataException if the command value, channel value 261 public ShortMessage(int command, int channel, int data1, int data2) argument 264 setMessage(command, channel, data1, data2); 356 * @param command the MIDI command represented by this message 371 public void setMessage(int command, int channel, int data1, int data2) throws InvalidMidiDataException { argument 373 if (command > [all...] |
/openjdk7/jdk/src/share/classes/sun/awt/im/ |
H A D | InputMethodPopupMenu.java | 78 abstract void addMenuItem(String label, String command, String currentSelection); argument 80 abstract void addMenuItem(Object targetMenu, String label, String command, argument 86 String command = locator.getActionCommandString(); 107 command = locator.deriveLocator(locales[0]).getActionCommandString(); 109 addMenuItem(label, command, currentSelection); 123 * Returns whether command indicates the same input method as currentSelection, 124 * taking into account that command may not specify a locale where currentSelection does. 126 static boolean isSelected(String command, String currentSelection) { argument 127 if (command == null || currentSelection == null) { 130 if (command 201 addMenuItem(String label, String command, String currentSelection) argument 205 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument 259 addMenuItem(String label, String command, String currentSelection) argument 263 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument [all...] |
/openjdk7/jdk/src/share/classes/java/rmi/activation/ |
H A D | ActivationGroupDesc.java | 95 * the group implementation's VM). The command 96 * environment can control the exact command/options used in 186 * Returns the group's command-environment control object. 187 * @return the command-environment object, or <code>null</code> 208 private String command; field in class:ActivationGroupDesc.CommandEnvironment 233 this.command = cmdpath; // might be null 245 * Fetch the configured path-qualified java command name. 252 return (this.command); 256 * Fetch the configured java command options. 258 * @return An array of the command option [all...] |
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/ |
H A D | AbstractLauncher.java | 62 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
|