Home
last modified time | relevance | path

Searched refs:commandPacket (Results 1 – 3 of 3) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java266 CommandPacket commandPacket = new CommandPacket(); in clearBreakpoint() local
269 commandPacket in clearBreakpoint()
273 commandPacket in clearBreakpoint()
278 commandPacket.setNextValueAsByte(JDWPConstants.EventKind.BREAKPOINT); in clearBreakpoint()
281 commandPacket.setNextValueAsInt(requestID); in clearBreakpoint()
284 return checkReply(performCommand(commandPacket)); in clearBreakpoint()
295 CommandPacket commandPacket = new CommandPacket(); in ClearAllBreakpoints() local
299 commandPacket in ClearAllBreakpoints()
303 commandPacket in ClearAllBreakpoints()
307 return checkReply(performCommand(commandPacket)); in ClearAllBreakpoints()
[all …]
/external/r8/src/test/java/com/android/tools/r8/debug/
DDebugTestBase.java606 CommandPacket commandPacket = new CommandPacket(
609 commandPacket.setNextValueAsThreadID(getThreadId());
610 commandPacket.setNextValueAsFrameID(getFrameId());
611 commandPacket.setNextValueAsInt(1);
612 commandPacket.setNextValueAsInt(v.getSlot());
613 commandPacket.setNextValueAsByte(v.getTag());
614 ReplyPacket replyPacket = getMirror().performCommand(commandPacket);
633 CommandPacket commandPacket = new CommandPacket(
636 commandPacket.setNextValueAsThreadID(getThreadId());
637 commandPacket.setNextValueAsFrameID(getFrameId());
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java611 CommandPacket commandPacket = new CommandPacket( in checkThreadState() local
614 commandPacket.setNextValueAsThreadID(eventThreadID); in checkThreadState()
615 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(commandPacket); in checkThreadState()