Home
last modified time | relevance | path

Searched refs:replyPacket (Results 1 – 13 of 13) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Deoptimization/
DDeoptimizationWithExceptionHandlingTest.java121 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setMethodEntry(getDebuggeeClassName()); in installMethodEntry() local
122 replyPacket.getNextValueAsInt(); // unused 'requestID' in installMethodEntry()
123 assertAllDataRead(replyPacket); in installMethodEntry()
128 ReplyPacket replyPacket = in requestExceptionEvent() local
130 int requestID = replyPacket.getNextValueAsInt(); in requestExceptionEvent()
131 assertAllDataRead(replyPacket); in requestExceptionEvent()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java390 ReplyPacket replyPacket = checkReply(performCommand(commandPacket)); in capabilities() local
395 targetVMCapabilities.canWatchFieldModification = replyPacket in capabilities()
397 targetVMCapabilities.canWatchFieldAccess = replyPacket in capabilities()
399 targetVMCapabilities.canGetBytecodes = replyPacket in capabilities()
401 targetVMCapabilities.canGetSyntheticAttribute = replyPacket in capabilities()
403 targetVMCapabilities.canGetOwnedMonitorInfo = replyPacket in capabilities()
405 targetVMCapabilities.canGetCurrentContendedMonitor = replyPacket in capabilities()
407 targetVMCapabilities.canGetMonitorInfo = replyPacket in capabilities()
409 targetVMCapabilities.canRedefineClasses = replyPacket in capabilities()
411 targetVMCapabilities.canAddMethod = replyPacket.getNextValueAsBoolean(); in capabilities()
[all …]
DPacketDispatcher.java227 public void notifyThread(ReplyPacket replyPacket) throws IOException, in notifyThread() argument
233 Integer Id = new Integer(replyPacket.getId()); in notifyThread()
248 replies.put(new Integer(replyPacket.getId()), in notifyThread()
249 replyPacket); in notifyThread()
530 ReplyPacket replyPacket = new ReplyPacket(packet); in run() local
533 int packetLength = replyPacket.getLength(); in run()
542 int replyID = replyPacket.getId(); in run()
554 commandsSynchronyzer.notifyThread(replyPacket); in run()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DInvokeMethodWithSuspensionTest.java41 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.getThreadFrames(threadId, 0, 1); in buildInvokeCommand() local
42 int framesCount = replyPacket.getNextValueAsInt(); in buildInvokeCommand()
44 long topFrameId = replyPacket.getNextValueAsFrameID(); in buildInvokeCommand()
45 replyPacket.getNextValueAsLocation(); // consume 'location' in buildInvokeCommand()
46 assertAllDataRead(replyPacket); in buildInvokeCommand()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DGetValuesTest.java70 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testGetValues002_InvalidObjectError() local
71 checkReplyPacket(replyPacket, "StackFrame.GetValues", in testGetValues002_InvalidObjectError()
90 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testGetValues003_ThreadNotSuspendedError() local
91 checkReplyPacket(replyPacket, "StackFrame.GetValues", in testGetValues003_ThreadNotSuspendedError()
115 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testGetValues004_InvalidFrameIDError() local
116 checkReplyPacket(replyPacket, "StackFrame.GetValues", in testGetValues004_InvalidFrameIDError()
158 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testGetValues005_InvalidSlotError() local
159 checkReplyPacket(replyPacket, "StackFrame.GetValues", in testGetValues005_InvalidSlotError()
DSetValuesTest.java71 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testSetValues002_InvalidObjectError() local
72 checkReplyPacket(replyPacket, "StackFrame.SetValues", in testSetValues002_InvalidObjectError()
91 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testSetValues003_ThreadNotSuspendedError() local
92 checkReplyPacket(replyPacket, "StackFrame.SetValues", in testSetValues003_ThreadNotSuspendedError()
116 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testSetValues004_InvalidFrameIDError() local
117 checkReplyPacket(replyPacket, "StackFrame.SetValues", in testSetValues004_InvalidFrameIDError()
162 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet); in testSetValues005_InvalidSlotError() local
163 checkReplyPacket(replyPacket, "StackFrame.SetValues", in testSetValues005_InvalidSlotError()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DBreakpointOnCatchTest.java101 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(exceptionSig, true, false); in requestExceptionCaughtEvent() local
102 return replyPacket.getNextValueAsInt(); in requestExceptionCaughtEvent()
108 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setBreakpoint(location); in requestBreakpointEvent() local
109 return replyPacket.getNextValueAsInt(); in requestBreakpointEvent()
DExceptionUncaughtTest.java190 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(EXCEPTION_SIGNATURE, in requestAndReceiveExceptionEvent() local
192 int requestID = replyPacket.getNextValueAsInt(); in requestAndReceiveExceptionEvent()
193 assertAllDataRead(replyPacket); in requestAndReceiveExceptionEvent()
DEventLocationEventTestCase.java98 ReplyPacket replyPacket = getLineTable(typeId, methodId); in requestEventForAllLocations() local
99 long startIndex = replyPacket.getNextValueAsLong(); in requestEventForAllLocations()
100 long endIndex = replyPacket.getNextValueAsLong(); in requestEventForAllLocations()
DCombinedExceptionEventsTest.java177 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException( in requestException() local
179 int requestID = replyPacket.getNextValueAsInt(); in requestException()
180 assertAllDataRead(replyPacket); in requestException()
DExceptionCaughtTest.java278 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(exceptionSignature, in requestAndReceiveExceptionEvent() local
280 int requestID = replyPacket.getNextValueAsInt(); in requestAndReceiveExceptionEvent()
281 assertAllDataRead(replyPacket); in requestAndReceiveExceptionEvent()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java565 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(commandPacket); in checkThreadState() local
566 debuggeeWrapper.vmMirror.checkReply(replyPacket); in checkThreadState()
568 int threadStatus = replyPacket.getNextValueAsInt(); in checkThreadState()
569 int suspendStatus = replyPacket.getNextValueAsInt(); in checkThreadState()
570 assertAllDataRead(replyPacket); in checkThreadState()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...