Home | History | Annotate | Download | only in jdwp

Lines Matching refs:command

31  * This class represents JDWP command packet.
38 private byte command;
48 * Creates an empty CommandPacket for specific JDWP command with no data.
50 public CommandPacket(byte commandSet, byte command) {
53 this.command = command;
64 command = bytes_array[COMMAND_INDEX];
68 * Sets command set value of the header of the CommandPacket as byte.
70 * @param val the command set.
77 * Gets command set value of the header of the CommandPacket as byte.
79 * @return the command set value of the header of the CommandPacket as byte.
86 * Sets command value of the header of the CommandPacket as byte.
88 * @param val the command.
91 command = val;
95 * Sets command value of the header of the CommandPacket as byte.
97 * @param commandSet number of the command set.
98 * @param command number of the command.
100 public void setCommand(byte commandSet, byte command) {
102 this.command = command;
106 * Gets command value of the header of the CommandPacket as byte.
108 * @return the command value of the header of the CommandPacket as byte.
111 return command;
125 res[COMMAND_INDEX] = command;