Lines Matching refs:command

52  * of corresponding JDWP command or TestErrorException if any other error
105 * @return ReplyPacket for corresponding command
120 * @return ReplyPacket for corresponding command
143 * @return ReplyPacket for corresponding command
157 * @return ReplyPacket for corresponding command
185 * @return ReplyPacket for corresponding command
310 * @return ReplyPacket for corresponding command
314 // Create new command packet
317 // Set command. "2" - is ID of Clear command in EventRequest Command Set
321 // Set command set. "15" - is ID of EventRequest Command Set
339 * @return ReplyPacket for corresponding command
343 // Create new command packet
346 // Set command. "3" - is ID of ClearAllBreakpoints command in
351 // Set command set. "15" - is ID of EventRequest Command Set
361 * VirtualMachine::CapabilitiesNew command, creates and fills class
368 // Create new command packet
371 // Set command. "17" - is ID of CapabilitiesNew command in
376 // Set command set. "1" - is ID of VirtualMachine Command Set
457 * @return ReplyPacket for corresponding command
470 * @return ReplyPacket for corresponding command
484 * @return ReplyPacket for corresponding command
497 * @return ReplyPacket for corresponding command
511 * @return ReplyPacket for corresponding command
514 // Create new command packet
528 * @return ReplyPacket for corresponding command
531 // Create new command packet
546 * @return ReplyPacket for corresponding command
549 // Create new command packet
681 // Create new command packet
697 // Create new command packet
714 // Create new command packet
748 // Create new command packet
1254 // Create new command packet
1350 * @return ReplyPacket for corresponding command
1353 // Create new command packet
1356 // Set command. "5" - is ID of Methods command in ReferenceType Command
1361 // Set command set. "2" - is ID of ReferenceType Command Set
1378 * @return ReplyPacket for corresponding command
1393 * @return ReplyPacket for corresponding command
1412 * @return ReplyPacket for corresponding command
1430 * @return ReplyPacket for corresponding command
1460 * @return ReplyPacket for corresponding command
1489 * @return ReplyPacket for corresponding command
1517 * @return ReplyPacket for corresponding command
1548 * @return ReplyPacket for corresponding command
1574 * @return ReplyPacket for corresponding command
1602 * @return ReplyPacket for corresponding command
1680 * @return ReplyPacket for corresponding command
1719 * @return ReplyPacket for corresponding command
1783 * @return ReplyPacket for corresponding command
1798 * @return ReplyPacket for corresponding command
1817 * @return ReplyPacket for corresponding command
1820 // Create new command packet
1823 // Set command. "2" - is ID of Clear command in EventRequest Command Set
1827 // Set command set. "15" - is ID of EventRequest Command Set
1848 * @param command
1852 public ReplyPacket performCommand(CommandPacket command)
1856 replyPacket = packetDispatcher.performCommand(command);
1870 * @param command
1879 public ReplyPacket performCommand(CommandPacket command, long timeout)
1882 return packetDispatcher.performCommand(command, timeout);
1888 * command's performing into two actions: command's sending and receiving
1891 * sent command. It is NOT recommended to use this method for usual cases -
1894 * @param command
1896 * @return command ID of sent command
1900 public int sendCommand(CommandPacket command) throws IOException {
1901 return packetDispatcher.sendCommand(command);
1905 * Waits for reply for command which was sent before by 'sendCommand()'
1908 * is need to divide command's performing into two actions: command's
1914 * Command ID of sent before command, reply from which is
1930 * Waits for reply for command which was sent before by 'sendCommand()'
1933 * is need to divide command's performing into two actions: command's
1939 * Command ID of sent before command, reply from which is
2070 CommandPacket command = new CommandPacket(
2073 command.setNextValueAsThreadID(threadID);
2074 ReplyPacket reply = checkReply(performCommand(command));
2117 * @return ReplyPacket for corresponding command
2121 CommandPacket command = new CommandPacket(
2124 command.setNextValueAsThreadID(threadID);
2125 command.setNextValueAsInt(startIndex); // start frame's index
2126 command.setNextValueAsInt(length); // get all remaining frames;
2127 return checkReply(performCommand(command));
2141 CommandPacket command = new CommandPacket(
2144 command.setNextValueAsReferenceTypeID(classID);
2145 command.setNextValueAsMethodID(methodID);
2147 // debuggeeWrapper.vmMirror.checkReply(debuggeeWrapper.vmMirror.performCommand(command));
2148 ReplyPacket reply = performCommand(command);
2184 CommandPacket command = new CommandPacket(
2187 command.setNextValueAsThreadID(frame.getThreadID());
2188 command.setNextValueAsFrameID(frame.getID());
2190 command.setNextValueAsInt(slots);
2194 command.setNextValueAsInt(var.getSlot());
2195 command.setNextValueAsByte(var.getTag());
2198 ReplyPacket reply = checkReply(performCommand(command));
2217 CommandPacket command = new CommandPacket(
2220 command.setNextValueAsClassID(classID);
2221 ReplyPacket reply = checkReply(performCommand(command));
2233 CommandPacket command = new CommandPacket(
2236 command.setNextValueAsObjectID(objectID);
2237 ReplyPacket reply = checkReply(performCommand(command));
2250 CommandPacket command = new CommandPacket(
2253 command.setNextValueAsReferenceTypeID(refType);
2254 ReplyPacket reply = checkReply(performCommand(command));
2265 * @return ReplyPacket for corresponding command.
2268 CommandPacket command = new CommandPacket(
2271 command.setNextValueAsReferenceTypeID(refType);
2272 command.setNextValueAsMethodID(methodID);
2274 // debuggeeWrapper.vmMirror.checkReply(debuggeeWrapper.vmMirror.performCommand(command));
2277 ReplyPacket reply = performCommand(command);
2302 CommandPacket command = new CommandPacket(
2305 command.setNextValueAsReferenceTypeID(objectID);
2306 command.setNextValueAsInt(fieldsCount);
2308 command.setNextValueAsFieldID(fieldIDs[i]);
2311 ReplyPacket reply = checkReply(performCommand(command));
2336 CommandPacket command = new CommandPacket(
2339 command.setNextValueAsReferenceTypeID(refTypeID);
2340 command.setNextValueAsInt(fieldsCount);
2342 command.setNextValueAsFieldID(fieldIDs[i]);
2345 ReplyPacket reply = checkReply(performCommand(command));
2365 CommandPacket command = new CommandPacket(
2368 command.setNextValueAsThreadID(threadID);
2369 command.setNextValueAsFrameID(frameID);
2370 ReplyPacket reply = checkReply(performCommand(command));
2411 * @return ReplyPacket for corresponding command
2414 CommandPacket command = new CommandPacket(
2417 command.setNextValueAsClassObjectID(classObjectID);
2418 return checkReply(performCommand(command));
2430 CommandPacket command = new CommandPacket(
2433 command.setNextValueAsReferenceTypeID(refTypeID);
2434 ReplyPacket reply = checkReply(performCommand(command));
2446 CommandPacket command = new CommandPacket(
2449 command.setNextValueAsThreadID(threadID);
2450 ReplyPacket reply = checkReply(performCommand(command));
2462 CommandPacket command = new CommandPacket(
2465 command.setNextValueAsThreadID(threadID);
2466 ReplyPacket reply = checkReply(performCommand(command));
2481 CommandPacket command = new CommandPacket(
2484 command.setNextValueAsReferenceTypeID(classID);
2485 ReplyPacket reply = checkReply(performCommand(command));
2513 CommandPacket command = new CommandPacket(
2516 command.setNextValueAsObjectID(objectID);
2517 ReplyPacket reply = checkReply(performCommand(command));
2529 CommandPacket command = new CommandPacket(
2532 command.setNextValueAsArrayID(objectID);
2533 ReplyPacket reply = checkReply(performCommand(command));
2540 command = new CommandPacket(
2543 command.setNextValueAsArrayID(objectID);
2544 command.setNextValueAsInt(0);
2545 command.setNextValueAsInt(length);
2546 reply = checkReply(performCommand(command));
2675 CommandPacket command = new CommandPacket(
2678 command.setNextValueAsThreadID(frame.getThreadID());
2679 command.setNextValueAsFrameID(frame.getID());
2680 command.setNextValueAsInt(vars.length);
2682 command.setNextValueAsInt(vars[i].getSlot());
2683 command.setNextValueAsValue(values[i]);
2686 checkReply(performCommand(command));
2706 CommandPacket command = new CommandPacket(
2709 command.setNextValueAsObjectID(objectID);
2710 command.setNextValueAsInt(fieldIDs.length);
2712 command.setNextValueAsFieldID(fieldIDs[i]);
2713 command.setNextValueAsUntaggedValue(values[i]);
2716 checkReply(performCommand(command));
2732 CommandPacket command = new CommandPacket(
2735 command.setNextValueAsArrayID(arrayID);
2736 command.setNextValueAsInt(firstIndex);
2737 command.setNextValueAsInt(values.length);
2739 command.setNextValueAsUntaggedValue(values[i]);
2742 checkReply(performCommand(command));
2762 CommandPacket command = new CommandPacket(
2765 command.setNextValueAsClassID(classID);
2766 command.setNextValueAsInt(fieldIDs.length);
2768 command.setNextValueAsFieldID(fieldIDs[i]);
2769 command.setNextValueAsUntaggedValue(values[i]);
2772 checkReply(performCommand(command));
2783 CommandPacket command = new CommandPacket(
2786 command.setNextValueAsString(value);
2787 ReplyPacket reply = checkReply(performCommand(command));
2792 * Processes JDWP PopFrames command from StackFrame command set.
2798 CommandPacket command = new CommandPacket(
2801 command.setNextValueAsThreadID(frame.getThreadID());
2802 command.setNextValueAsFrameID(frame.getID());
2803 checkReply(performCommand(command));
2819 * @return ReplyPacket for corresponding command
2825 CommandPacket command = new CommandPacket(
2828 command.setNextValueAsObjectID(objectID);
2829 command.setNextValueAsThreadID(threadID);
2830 command.setNextValueAsClassID(classID);
2831 command.setNextValueAsMethodID(methodID);
2832 command.setNextValueAsInt(args.length);
2834 command.setNextValueAsValue(args[i]);
2836 command.setNextValueAsInt(options);
2838 return checkReply(performCommand(command));
2854 * @return ReplyPacket for corresponding command
2859 CommandPacket command = new CommandPacket(
2862 command.setNextValueAsClassID(classID);
2863 command.setNextValueAsThreadID(threadID);
2864 command.setNextValueAsMethodID(methodID);
2865 command.setNextValueAsInt(args.length);
2867 command.setNextValueAsValue(args[i]);
2869 command.setNextValueAsInt(options);
2871 return checkReply(performCommand(command));