Home
last modified time | relevance | path

Searched refs:vmMirror (Results 1 – 25 of 193) sorted by relevance

12345678

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DCombinedEventsTest.java82 long debuggeeClassID = debuggeeWrapper.vmMirror in testCombinedEvents_01()
86 long threadID = debuggeeWrapper.vmMirror.getThreadID(debuggeeMainThreadName); in testCombinedEvents_01()
89 long runMethodID = debuggeeWrapper.vmMirror.getMethodID(debuggeeClassID, "run"); in testCombinedEvents_01()
94 … long testedMethodID = debuggeeWrapper.vmMirror.getMethodID(debuggeeClassID, methodForEvents); in testCombinedEvents_01()
114 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); in testCombinedEvents_01()
120 reply = debuggeeWrapper.vmMirror in testCombinedEvents_01()
142 ReplyPacket setRequestReply = debuggeeWrapper.vmMirror in testCombinedEvents_01()
164 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_01()
170 clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_01()
175 debuggeeWrapper.vmMirror.resume(); in testCombinedEvents_01()
[all …]
DMonitorWaitTest.java44 debuggeeWrapper.vmMirror.setMonitorWaitForClassOnly(monitorRefTypeID); in testMonitorWaitForClassOnly()
57 debuggeeWrapper.vmMirror.setMonitorWaitForClassMatch(classPattern); in testMonitorWaitForClassMatchExact()
70 debuggeeWrapper.vmMirror.setMonitorWaitForClassMatch(classPattern); in testMonitorWaitForClassMatchFirst()
83 debuggeeWrapper.vmMirror.setMonitorWaitForClassMatch(classPattern); in testMonitorWaitForClassMatchSecond()
96 debuggeeWrapper.vmMirror.setMonitorWaitForClassExclude(classPattern); in testMonitorWaitForClassExclude()
111 receiveEvent = debuggeeWrapper.vmMirror.receiveEvent(); in verifyEvent()
127 long testedThreadID = debuggeeWrapper.vmMirror.getThreadID("main"); in verifyEvent()
133 long refID = debuggeeWrapper.vmMirror.getReferenceType(objID); in verifyEvent()
134 String actualSignature = debuggeeWrapper.vmMirror.getReferenceTypeSignature(refID); in verifyEvent()
DMonitorWaitedTest.java44 debuggeeWrapper.vmMirror.setMonitorWaitedForClassOnly(monitorRefTypeID); in testMonitorWaitedForClassOnly()
57 debuggeeWrapper.vmMirror.setMonitorWaitedForClassMatch(classPattern); in testMonitorWaitedForClassMatchExact()
70 debuggeeWrapper.vmMirror.setMonitorWaitedForClassMatch(classPattern); in testMonitorWaitedForClassMatchFirst()
83 debuggeeWrapper.vmMirror.setMonitorWaitedForClassMatch(classPattern); in testMonitorWaitedForClassMatchSecond()
96 debuggeeWrapper.vmMirror.setMonitorWaitedForClassExclude(classPattern); in testMonitorWaitedForClassExclude()
111 receiveEvent = debuggeeWrapper.vmMirror.receiveEvent(); in verifyEvent()
127 long testedThreadID = debuggeeWrapper.vmMirror.getThreadID("main"); in verifyEvent()
133 long refID = debuggeeWrapper.vmMirror.getReferenceType(objID); in verifyEvent()
134 String actualSignature = debuggeeWrapper.vmMirror.getReferenceTypeSignature(refID); in verifyEvent()
DCombinedEvents003Test.java73 long debuggeeClassID = debuggeeWrapper.vmMirror in testCombinedEvents003_01()
77 long threadID = debuggeeWrapper.vmMirror.getThreadID(debuggeeMainThreadName); in testCombinedEvents003_01()
80 long runMethodID = debuggeeWrapper.vmMirror.getMethodID(debuggeeClassID, "run"); in testCombinedEvents003_01()
83 long dummyMethodID = debuggeeWrapper.vmMirror.getMethodID(debuggeeClassID, "dummyMethod"); in testCombinedEvents003_01()
88 … long testedMethodID = debuggeeWrapper.vmMirror.getMethodID(debuggeeClassID, methodForEvents); in testCombinedEvents003_01()
108 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); in testCombinedEvents003_01()
114 reply = debuggeeWrapper.vmMirror in testCombinedEvents003_01()
121 reply = debuggeeWrapper.vmMirror in testCombinedEvents003_01()
143 ReplyPacket setRequestReply = debuggeeWrapper.vmMirror in testCombinedEvents003_01()
163 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents003_01()
[all …]
DBreakpointMultipleTest.java55 debuggeeWrapper.vmMirror.clearBreakpoint(breakpoint1); in testSetAndClearMultipleBreakpoint()
56 debuggeeWrapper.vmMirror.clearBreakpoint(breakpoint2); in testSetAndClearMultipleBreakpoint()
60 debuggeeWrapper.vmMirror.clearBreakpoint(breakpoint3); in testSetAndClearMultipleBreakpoint()
87 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testSetMultipleBreakpoint()
99 debuggeeWrapper.vmMirror.clearBreakpoint(breakpoint1); in testSetMultipleBreakpoint()
100 debuggeeWrapper.vmMirror.clearBreakpoint(breakpoint2); in testSetMultipleBreakpoint()
113 VmMirror mirror = debuggeeWrapper.vmMirror; in setBreakpoint()
DClassPrepareTest.java57 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPrepared(class2prepareRegexp); in testClassPrepareEvent()
63 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testClassPrepareEvent()
85 if (!debuggeeWrapper.vmMirror.canUseSourceNameFilters()) { in testClassPrepareEventWithoutSourceDebugExtension()
95 …ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPreparedForSourceNameMatch(expectedSourceName… in testClassPrepareEventWithoutSourceDebugExtension()
101 CommandPacket receiveEvent = debuggeeWrapper.vmMirror.receiveEvent(); in testClassPrepareEventWithoutSourceDebugExtension()
147 if (!debuggeeWrapper.vmMirror.canUseSourceNameFilters()) { in testClassPrepareEventWithSourceDebugExtension()
158 …ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPreparedForSourceNameMatch(expectedSourceName… in testClassPrepareEventWithSourceDebugExtension()
166 receiveEvent = debuggeeWrapper.vmMirror.receiveEvent(); in testClassPrepareEventWithSourceDebugExtension()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPInvokeMethodSuspendedTwiceTestCase.java65 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in runInvokeMethodTest()
73 long eventThreadOne = debuggeeWrapper.vmMirror.waitForBreakpoint(breakpointEventThread); in runInvokeMethodTest()
74 int suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne); in runInvokeMethodTest()
78 debuggeeWrapper.vmMirror.clearBreakpoint(breakpointEventThread); in runInvokeMethodTest()
81 debuggeeWrapper.vmMirror.suspendThread(eventThreadOne); in runInvokeMethodTest()
82 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne); in runInvokeMethodTest()
97 invokeMethodCommandID = debuggeeWrapper.vmMirror.sendCommand(invokeMethodCommand); in runInvokeMethodTest()
107 invokeMethodReply = debuggeeWrapper.vmMirror.receiveReply(invokeMethodCommandID); in runInvokeMethodTest()
120 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne); in runInvokeMethodTest()
127 debuggeeWrapper.vmMirror.performCommand(anotherInvokeMethodCommand); in runInvokeMethodTest()
[all …]
DJDWPInvokeMethodWithSuspensionTestCase.java66 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in runInvokeMethodTest()
72 int breakpointAllThreads = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in runInvokeMethodTest()
80 long eventThreadOne = debuggeeWrapper.vmMirror.waitForBreakpoint(breakpointEventThread); in runInvokeMethodTest()
81 int suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne); in runInvokeMethodTest()
96 invokeMethodCommandID = debuggeeWrapper.vmMirror.sendCommand(invokeMethodCommand); in runInvokeMethodTest()
103 long eventThreadTwo = debuggeeWrapper.vmMirror.waitForBreakpoint(breakpointAllThreads); in runInvokeMethodTest()
104 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadTwo); in runInvokeMethodTest()
109 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne); in runInvokeMethodTest()
116 debuggeeWrapper.vmMirror.performCommand(anotherInvokeMethodCommand); in runInvokeMethodTest()
131 invokeMethodReply = debuggeeWrapper.vmMirror.receiveReply(invokeMethodCommandID); in runInvokeMethodTest()
[all …]
DJDWPTestCase.java69 debuggeeWrapper.vmMirror.adjustTypeLength(); in internalSetUp()
106 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.VM_INIT); in receiveInitialEvent()
144 debuggeeWrapper.vmMirror.adjustTypeLength(); in openConnection()
156 debuggeeWrapper.vmMirror.closeConnection(); in closeConnection()
188 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); in getObjectReferenceType()
210 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); in getMethodID()
241 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); in getMethodID()
271 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror in getLineTable()
289 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in getMethodName()
315 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); in getClassSignature()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DPopFrames002Test.java71 if (!debuggeeWrapper.vmMirror.canPopFrames()) { in testPopSeveralFrames()
85 int requestID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin( in testPopSeveralFrames()
93 long breakpointThreadID = debuggeeWrapper.vmMirror in testPopSeveralFrames()
162 debuggeeWrapper.vmMirror.resume(); in testPopSeveralFrames()
168 breakpointThreadID = debuggeeWrapper.vmMirror in testPopSeveralFrames()
172 debuggeeWrapper.vmMirror.resume(); in testPopSeveralFrames()
195 if (!debuggeeWrapper.vmMirror.canPopFrames()) { in testPopSeveralTimes()
208 int requestID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin( in testPopSeveralTimes()
215 long breakpointThreadID = debuggeeWrapper.vmMirror in testPopSeveralTimes()
256 debuggeeWrapper.vmMirror.resume(); in testPopSeveralTimes()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Deoptimization/
DDeoptimizationWithExceptionHandlingTest.java84 debuggeeWrapper.vmMirror.resume(); in runTestDeoptimizationWithExceptionHandling()
91 debuggeeWrapper.vmMirror.resume(); in runTestDeoptimizationWithExceptionHandling()
107 int requestID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(debuggeeClassID, in stopOnBreakpoint()
114 debuggeeWrapper.vmMirror.waitForBreakpoint(requestID); in stopOnBreakpoint()
117 debuggeeWrapper.vmMirror.clearBreakpoint(requestID); in stopOnBreakpoint()
121 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setMethodEntry(getDebuggeeClassName()); in installMethodEntry()
129 debuggeeWrapper.vmMirror.setException(exceptionClassSignature, true, false); in requestExceptionEvent()
137 EventPacket event = debuggeeWrapper.vmMirror.receiveCertainEvent(eventKind); in waitForExceptionEvent()
145 debuggeeWrapper.vmMirror.clearEvent(eventKind, requestID); in waitForExceptionEvent()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPDebuggeeWrapper.java42 public VmMirror vmMirror; field in JDWPDebuggeeWrapper
52 vmMirror = createVmMirror(settings, logWriter); in JDWPDebuggeeWrapper()
85 return vmMirror.getConnection(); in getConnection()
94 vmMirror.setConnection(connection); in setConnection()
100 vmMirror.resume(); in resume()
107 vmMirror.dispose(); in dispose()
114 vmMirror.exit(exitStatus); in exit()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DInvokeMethod003Test.java55 long debuggeeTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeClassSig); in testInvokeMethod_toString()
67 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_toString()
77 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testInvokeMethod_toString()
103 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_toString()
108 … long receiverFieldID = debuggeeWrapper.vmMirror.getFieldID(debuggeeTypeID, "invokeReceiver"); in testInvokeMethod_toString()
118 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_toString()
131 long testTypeID = debuggeeWrapper.vmMirror.getClassID(testClassSig); in testInvokeMethod_toString()
135 long objectTypeID = debuggeeWrapper.vmMirror.getClassID("Ljava/lang/Object;"); in testInvokeMethod_toString()
139 long targetMethodID = debuggeeWrapper.vmMirror.getMethodID(objectTypeID, "toString"); in testInvokeMethod_toString()
153 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_toString()
[all …]
DInvokeMethodDefaultTest.java51 long debuggeeTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeClassSig); in testInvokeMethod()
63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod()
73 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testInvokeMethod()
95 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.METHOD_ENTRY, requestID); in testInvokeMethod()
99 debuggeeWrapper.vmMirror.getFieldID(debuggeeTypeID, "invokeReceiver"); in testInvokeMethod()
103 …Value fieldValue = debuggeeWrapper.vmMirror.getReferenceTypeValue(debuggeeTypeID, receiverFieldID); in testInvokeMethod()
111 long testTypeID = debuggeeWrapper.vmMirror.getClassID(testClassSig); in testInvokeMethod()
115 long interfaceTypeID = debuggeeWrapper.vmMirror.getInterfaceID( in testInvokeMethod()
122 debuggeeWrapper.vmMirror.getMethodID(interfaceTypeID, "testDefaultMethod"); in testInvokeMethod()
141 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod()
[all …]
DInvokeMethodDefault002Test.java52 long debuggeeTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeClassSig); in testInvokeMethod()
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod()
74 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testInvokeMethod()
95 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.METHOD_ENTRY, requestID); in testInvokeMethod()
99 debuggeeWrapper.vmMirror.getFieldID(debuggeeTypeID, "invokeReceiver"); in testInvokeMethod()
103 …Value fieldValue = debuggeeWrapper.vmMirror.getReferenceTypeValue(debuggeeTypeID, receiverFieldID); in testInvokeMethod()
111 long testTypeID = debuggeeWrapper.vmMirror.getClassID(testClassSig); in testInvokeMethod()
115 long interfaceTypeID = debuggeeWrapper.vmMirror.getInterfaceID( in testInvokeMethod()
122 debuggeeWrapper.vmMirror.getMethodID(interfaceTypeID, "testDefaultMethod"); in testInvokeMethod()
141 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod()
[all …]
DInvokeMethod002Test.java53 long debuggeeTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeClassSig); in testInvokeMethod_null_argument()
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_null_argument()
75 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testInvokeMethod_null_argument()
101 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_null_argument()
106 … long receiverFieldID = debuggeeWrapper.vmMirror.getFieldID(debuggeeTypeID, "invokeReceiver"); in testInvokeMethod_null_argument()
116 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_null_argument()
129 long testTypeID = debuggeeWrapper.vmMirror.getClassID(testClassSig); in testInvokeMethod_null_argument()
133 long targetMethodID = debuggeeWrapper.vmMirror.getMethodID(testTypeID, "testMethod"); in testInvokeMethod_null_argument()
149 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod_null_argument()
169 debuggeeWrapper.vmMirror.resume(); in testInvokeMethod_null_argument()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethodTest.java71 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
95 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
123 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
133 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testInvokeMethod001()
159 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
174 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
204 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
225 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethod001()
248 long debuggeeRefTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeSignature); in testInvokeMethod002()
258 debuggeeWrapper.vmMirror.getMethodID(debuggeeRefTypeID, testMethodName); in testInvokeMethod002()
[all …]
DNewInstanceTest.java69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
91 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
120 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
130 CommandPacket event = debuggeeWrapper.vmMirror in testNewInstance001()
158 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
173 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
199 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
224 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
254 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance001()
278 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance002()
[all …]
DNewInstance002Test.java54 long debuggeeTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeClassSig); in testNewInstance_null_argument()
66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance_null_argument()
76 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testNewInstance_null_argument()
102 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance_null_argument()
108 long testTypeID = debuggeeWrapper.vmMirror.getClassID(testClassSig); in testNewInstance_null_argument()
112 long targetMethodID = debuggeeWrapper.vmMirror.getMethodID(testTypeID, "<init>"); in testNewInstance_null_argument()
127 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testNewInstance_null_argument()
149 debuggeeWrapper.vmMirror.resume(); in testNewInstance_null_argument()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DSuspendCountTest.java94 allThreadIDReply = debuggeeWrapper.vmMirror.getAllThreadID(); in testSuspendCount001()
115 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspendCount001()
142 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
164 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
179 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
197 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
207 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
232 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
247 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
311 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testSuspendCount001()
[all …]
DFramesTest.java76 threadID = debuggeeWrapper.vmMirror.getThreadID(testedThreadName); in testFrames005()
78 debuggeeWrapper.vmMirror.suspendThread(threadID); in testFrames005()
109 debuggeeWrapper.vmMirror.resumeThread(threadID); in testFrames005()
130 threadID = debuggeeWrapper.vmMirror.getThreadID(testedThreadName); in testFrames004()
132 debuggeeWrapper.vmMirror.suspendThread(threadID); in testFrames004()
164 debuggeeWrapper.vmMirror.resumeThread(threadID); in testFrames004()
185 threadID = debuggeeWrapper.vmMirror.getThreadID(testedThreadName); in testFrames003()
187 debuggeeWrapper.vmMirror.suspendThread(threadID); in testFrames003()
219 debuggeeWrapper.vmMirror.resumeThread(threadID); in testFrames003()
245 threadID = debuggeeWrapper.vmMirror.getThreadID(testedThreadName); in testFrames002()
[all …]
DResumeTest.java90 allThreadIDReply = debuggeeWrapper.vmMirror.getAllThreadID(); in testResume001()
103 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testResume001()
151 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
171 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
191 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
220 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
231 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
256 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
296 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
311 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testResume001()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
DChildrenTest.java63 long threadID = debuggeeWrapper.vmMirror.getThreadID(NameDebuggee.TESTED_THREAD); in testChildren001()
75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testChildren001()
86 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testChildren001()
90 + debuggeeWrapper.vmMirror.getThreadGroupName(groupID) in testChildren001()
100 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID); in testChildren001()
123 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testChildren001()
178 long threadID = debuggeeWrapper.vmMirror.getThreadID(NameDebuggee.TESTED_THREAD); in testChildren_InvalidThreadGroup()
192 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in checkCommandError()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DHoldEventsTest.java61 debuggeeWrapper.vmMirror.setThreadStart(); in testHoldEvents001()
69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testHoldEvents001()
76 EventPacket event = debuggeeWrapper.vmMirror.receiveEvent(settings.getTimeout()); in testHoldEvents001()
89 debuggeeWrapper.vmMirror.performCommand(packet); in testHoldEvents001()
91 …EventPacket event = debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.THREAD_ST… in testHoldEvents001()
93 debuggeeWrapper.vmMirror.resume(); in testHoldEvents001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/
DInvokeMethodTest.java52 long debuggeeTypeID = debuggeeWrapper.vmMirror.getClassID(debuggeeClassSig); in testInvokeMethodStatic()
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethodStatic()
74 CommandPacket event = debuggeeWrapper.vmMirror.receiveEvent(); in testInvokeMethodStatic()
95 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.METHOD_ENTRY, requestID); in testInvokeMethodStatic()
100 debuggeeWrapper.vmMirror.getInterfaceID(debuggeeInterfaceSig); in testInvokeMethodStatic()
102 long targetMethodID = debuggeeWrapper.vmMirror.getMethodID(debuggeeInterfaceTypeID, in testInvokeMethodStatic()
119 reply = debuggeeWrapper.vmMirror.performCommand(packet); in testInvokeMethodStatic()
159 debuggeeWrapper.vmMirror.resume(); in testInvokeMethodStatic()

12345678