Home
last modified time | relevance | path

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

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DEventWithExceptionTest.java421 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setStep(eventThreadId, in setSingleStep() local
423 checkReplyPacket(replyPacket, "Failed to set SINGLE_STEP " + in setSingleStep()
425 return readRequestId(replyPacket); in setSingleStep()
441 ReplyPacket replyPacket = null; in setFieldWatchpoint() local
443 replyPacket = debuggeeWrapper.vmMirror.setFieldAccess(classSignature, classTypeTag, in setFieldWatchpoint()
446 replyPacket = debuggeeWrapper.vmMirror.setFieldModification(classSignature, in setFieldWatchpoint()
451 checkReplyPacket(replyPacket, "Failed to set " + eventKindName); in setFieldWatchpoint()
452 return readRequestId(replyPacket); in setFieldWatchpoint()
458 ReplyPacket replyPacket = null; in setMethodExit() local
460 replyPacket = debuggeeWrapper.vmMirror.setMethodExit(getDebuggeeClassName()); in setMethodExit()
[all …]
DSingleStepWithPendingExceptionTest.java123 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException( in setCatchException() local
126 checkReplyPacket(replyPacket, "Failed to set EXCEPTION event request"); in setCatchException()
127 return replyPacket.getNextValueAsInt(); in setCatchException()
131 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setStep(new String[0], threadId, in setSingleStepOut() local
133 checkReplyPacket(replyPacket, "Failed to set SINGLE_STEP OUT event request"); in setSingleStepOut()
134 return replyPacket.getNextValueAsInt(); in setSingleStepOut()
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()
DEventLocationEventTestCase.java98 ReplyPacket replyPacket = getLineTable(typeId, methodId); in requestEventForAllLocations() local
99 long startIndex = replyPacket.getNextValueAsLong(); in requestEventForAllLocations()
100 long endIndex = replyPacket.getNextValueAsLong(); in requestEventForAllLocations()
DExceptionUncaughtTest.java190 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(EXCEPTION_SIGNATURE, in requestAndReceiveExceptionEvent() local
192 int requestID = replyPacket.getNextValueAsInt(); in requestAndReceiveExceptionEvent()
193 assertAllDataRead(replyPacket); in requestAndReceiveExceptionEvent()
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/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()
DInvokeMethodAfterMultipleThreadSuspensionTest.java43 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.getThreadFrames(threadId, 0, 1); in buildInvokeCommand() local
44 int framesCount = replyPacket.getNextValueAsInt(); in buildInvokeCommand()
46 long topFrameId = replyPacket.getNextValueAsFrameID(); in buildInvokeCommand()
47 replyPacket.getNextValueAsLocation(); // consume 'location' in buildInvokeCommand()
48 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/share/
DJDWPTestCase.java613 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(commandPacket); in checkThreadState() local
614 debuggeeWrapper.vmMirror.checkReply(replyPacket); in checkThreadState()
616 int threadStatus = replyPacket.getNextValueAsInt(); in checkThreadState()
617 int suspendStatus = replyPacket.getNextValueAsInt(); in checkThreadState()
618 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 ...
/external/robolectric/v3/runtime/
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...