Home
last modified time | relevance | path

Searched refs:JDWPConstants (Results 1 – 25 of 164) sorted by relevance

1234567

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DField.java90 tag = JDWPConstants.Tag.ARRAY_TAG; in setSignature()
93 tag = JDWPConstants.Tag.BYTE_TAG; in setSignature()
96 tag = JDWPConstants.Tag.CHAR_TAG; in setSignature()
99 tag = JDWPConstants.Tag.OBJECT_TAG; in setSignature()
102 tag = JDWPConstants.Tag.FLOAT_TAG; in setSignature()
105 tag = JDWPConstants.Tag.DOUBLE_TAG; in setSignature()
108 tag = JDWPConstants.Tag.INT_TAG; in setSignature()
111 tag = JDWPConstants.Tag.LONG_TAG; in setSignature()
114 tag = JDWPConstants.Tag.SHORT_TAG; in setSignature()
117 tag = JDWPConstants.Tag.VOID_TAG; in setSignature()
[all …]
DValue.java29 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
48 tag = JDWPConstants.Tag.NO_TAG; in Value()
63 this.tag = JDWPConstants.Tag.BYTE_TAG; in Value()
71 this.tag = JDWPConstants.Tag.SHORT_TAG; in Value()
79 this.tag = JDWPConstants.Tag.INT_TAG; in Value()
87 this.tag = JDWPConstants.Tag.LONG_TAG; in Value()
95 this.tag = JDWPConstants.Tag.FLOAT_TAG; in Value()
103 this.tag = JDWPConstants.Tag.DOUBLE_TAG; in Value()
111 this.tag = JDWPConstants.Tag.BOOLEAN_TAG; in Value()
119 this.tag = JDWPConstants.Tag.CHAR_TAG; in Value()
[all …]
DFrame.java229 tag = JDWPConstants.Tag.NO_TAG; in Variable()
287 tag = JDWPConstants.Tag.ARRAY_TAG; in setSignature()
290 tag = JDWPConstants.Tag.BYTE_TAG; in setSignature()
293 tag = JDWPConstants.Tag.CHAR_TAG; in setSignature()
296 tag = JDWPConstants.Tag.OBJECT_TAG; in setSignature()
299 tag = JDWPConstants.Tag.FLOAT_TAG; in setSignature()
302 tag = JDWPConstants.Tag.DOUBLE_TAG; in setSignature()
305 tag = JDWPConstants.Tag.INT_TAG; in setSignature()
308 tag = JDWPConstants.Tag.LONG_TAG; in setSignature()
311 tag = JDWPConstants.Tag.SHORT_TAG; in setSignature()
[all …]
DParsedEvent.java176 super(suspendPolicy, packet, JDWPConstants.EventKind.VM_START); in Event_VM_START()
192 super(suspendPolicy, packet, JDWPConstants.EventKind.SINGLE_STEP); in Event_SINGLE_STEP()
208 super(suspendPolicy, packet, JDWPConstants.EventKind.BREAKPOINT); in Event_BREAKPOINT()
224 super(suspendPolicy, packet, JDWPConstants.EventKind.METHOD_ENTRY); in Event_METHOD_ENTRY()
240 super(suspendPolicy, packet, JDWPConstants.EventKind.METHOD_EXIT); in Event_METHOD_EXIT()
258 super(suspendPolicy, packet, JDWPConstants.EventKind.METHOD_EXIT_WITH_RETURN_VALUE); in Event_METHOD_EXIT_WITH_RETURN_VALUE()
279 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_CONTENDED_ENTER); in Event_MONITOR_CONTENDED_ENTER()
296 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_CONTENDED_ENTERED); in Event_MONITOR_CONTENDED_ENTERED()
315 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_WAIT); in Event_MONITOR_WAIT()
338 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_WAITED); in Event_MONITOR_WAITED()
[all …]
DPacket.java31 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
164 case JDWPConstants.Tag.ARRAY_TAG: { in isValuePrimitiveType()
167 case JDWPConstants.Tag.BYTE_TAG: { in isValuePrimitiveType()
170 case JDWPConstants.Tag.CHAR_TAG: { in isValuePrimitiveType()
173 case JDWPConstants.Tag.OBJECT_TAG: { in isValuePrimitiveType()
176 case JDWPConstants.Tag.FLOAT_TAG: { in isValuePrimitiveType()
179 case JDWPConstants.Tag.DOUBLE_TAG: { in isValuePrimitiveType()
182 case JDWPConstants.Tag.INT_TAG: { in isValuePrimitiveType()
185 case JDWPConstants.Tag.LONG_TAG: { in isValuePrimitiveType()
188 case JDWPConstants.Tag.SHORT_TAG: { in isValuePrimitiveType()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
DGetValuesTest.java33 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
78 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
79 1, JDWPConstants.Tag.OBJECT_TAG, JDWPConstants.Tag.THREAD_TAG, false); in testGetValues001()
84 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
85 1, JDWPConstants.Tag.OBJECT_TAG, JDWPConstants.Tag.THREAD_GROUP_TAG, false); in testGetValues001()
90 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
91 1, JDWPConstants.Tag.OBJECT_TAG, JDWPConstants.Tag.CLASS_OBJECT_TAG, false); in testGetValues001()
96 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
97 1, JDWPConstants.Tag.OBJECT_TAG, JDWPConstants.Tag.CLASS_LOADER_TAG, false); in testGetValues001()
102 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DFieldModification002Test.java29 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
57 hookFieldModification(classSignature, "testBoolField", JDWPConstants.Tag.BOOLEAN_TAG); in testFieldModifyEvent()
58 hookFieldModification(classSignature, "testByteField", JDWPConstants.Tag.BYTE_TAG); in testFieldModifyEvent()
59 hookFieldModification(classSignature, "testCharField", JDWPConstants.Tag.CHAR_TAG); in testFieldModifyEvent()
60 hookFieldModification(classSignature, "testShortField", JDWPConstants.Tag.SHORT_TAG); in testFieldModifyEvent()
61 hookFieldModification(classSignature, "testIntField", JDWPConstants.Tag.INT_TAG); in testFieldModifyEvent()
62 hookFieldModification(classSignature, "testLongField", JDWPConstants.Tag.LONG_TAG); in testFieldModifyEvent()
63 hookFieldModification(classSignature, "testFloatField", JDWPConstants.Tag.FLOAT_TAG); in testFieldModifyEvent()
64 hookFieldModification(classSignature, "testDoubleField", JDWPConstants.Tag.DOUBLE_TAG); in testFieldModifyEvent()
65 hookFieldModification(classSignature, "testObjectField", JDWPConstants.Tag.OBJECT_TAG); in testFieldModifyEvent()
[all …]
DEventWithExceptionTest.java22 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
23 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants.StepDepth;
50 runSingleStepTest(JDWPConstants.StepDepth.OUT); in testSingleStepOut()
57 runSingleStepTest(JDWPConstants.StepDepth.OVER); in testSingleStepOver()
64 runSingleStepTest(JDWPConstants.StepDepth.INTO); in testSingleStepInto()
83 ParsedEvent exceptionEvent = waitForEvent(JDWPConstants.EventKind.EXCEPTION, in testBreakpoint_BeforeException()
91 clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestId, true); in testBreakpoint_BeforeException()
106 ParsedEvent breakpointEvent = waitForEvent(JDWPConstants.EventKind.BREAKPOINT, in testBreakpoint_BeforeException()
114 clearEvent(JDWPConstants.EventKind.BREAKPOINT, breakpointRequestId, true); in testBreakpoint_BeforeException()
142 ParsedEvent exceptionEvent = waitForEvent(JDWPConstants.EventKind.EXCEPTION, in testBreakpoint_UponException()
[all …]
DSingleStepTest.java32 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
60 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OVER); in testSingleStep1()
71 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.INTO); in testSingleStep2()
81 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.OVER); in testSingleStep3()
91 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.INTO); in testSingleStep4()
133 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in stepFunction()
134 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in stepFunction()
167 + JDWPConstants.EventKind.getName(parsedEvents[i].getEventKind()) + ")"); in stepFunction()
174 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in stepFunction()
176 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in stepFunction()
[all …]
DCombinedEventsTest.java31 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
75 JDWPConstants.EventKind.METHOD_ENTRY, in testCombinedEvents_01()
76 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_01()
77 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_01()
132 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_01()
133 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testCombinedEvents_01()
137 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); in testCombinedEvents_01()
138 setRequestCommand.setNextValueAsInt(JDWPConstants.StepDepth.INTO); in testCombinedEvents_01()
165 JDWPConstants.EventKind.METHOD_ENTRY, methodEntryRequestID); in testCombinedEvents_01()
171 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_01()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DGetValuesTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
105 + "(" + JDWPConstants.Tag.getName(checkedObjectFieldTag) + ")"); in testGetValues001()
106 …assertEquals("Invalid value tag for checked object,", JDWPConstants.Tag.OBJECT_TAG, checkedObjectF… in testGetValues001()
107 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG) in testGetValues001()
108 , JDWPConstants.Tag.getName(checkedObjectFieldTag)); in testGetValues001()
134 JDWPConstants.Tag.INT_TAG, in testGetValues001()
135 JDWPConstants.Tag.LONG_TAG, in testGetValues001()
136 JDWPConstants.Tag.OBJECT_TAG, in testGetValues001()
137 JDWPConstants.Tag.ARRAY_TAG, in testGetValues001()
138 JDWPConstants.Tag.ARRAY_TAG, in testGetValues001()
[all …]
DGetValues002Test.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
106 + "(" + JDWPConstants.Tag.getName(checkedObjectFieldTag) + ")"); in testGetValues002()
107 …assertEquals("Invalid value tag for checked object,", JDWPConstants.Tag.OBJECT_TAG, checkedObjectF… in testGetValues002()
108 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG) in testGetValues002()
109 , JDWPConstants.Tag.getName(checkedObjectFieldTag)); in testGetValues002()
135 JDWPConstants.Tag.LONG_TAG, in testGetValues002()
136 JDWPConstants.Tag.INT_TAG, in testGetValues002()
137 JDWPConstants.Tag.STRING_TAG, in testGetValues002()
138 JDWPConstants.Tag.OBJECT_TAG, in testGetValues002()
139 JDWPConstants.Tag.BOOLEAN_TAG, in testGetValues002()
[all …]
DGetValues003Test.java31 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
105 + "(" + JDWPConstants.Tag.getName(checkedObjectFieldTag) + ")"); in testGetValues003()
106 …assertEquals("Invalid value tag for checked object,", JDWPConstants.Tag.OBJECT_TAG, checkedObjectF… in testGetValues003()
107 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG) in testGetValues003()
108 , JDWPConstants.Tag.getName(checkedObjectFieldTag)); in testGetValues003()
137 JDWPConstants.Tag.ARRAY_TAG, in testGetValues003()
138 JDWPConstants.Tag.ARRAY_TAG, in testGetValues003()
139 JDWPConstants.Tag.OBJECT_TAG, in testGetValues003()
140 JDWPConstants.Tag.STRING_TAG, in testGetValues003()
141 JDWPConstants.Tag.THREAD_TAG, in testGetValues003()
[all …]
DInvokeMethodTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
63 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY); in setEventRequest()
64 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in setEventRequest()
83 .receiveCertainEvent(JDWPConstants.EventKind.METHOD_ENTRY); in waitEvent()
110 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY); in clearEvent()
148 assertEquals("Invalid object tag,", JDWPConstants.Tag.OBJECT_TAG, newObject.tag in makeNewInstance()
149 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG) in makeNewInstance()
150 , JDWPConstants.Tag.getName(newObject.tag)); in makeNewInstance()
154 assertEquals("Invalid exception.tag,", JDWPConstants.Tag.OBJECT_TAG, exception.tag in makeNewInstance()
155 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG) in makeNewInstance()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DGetValues002Test.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
101 if ( errorCode != JDWPConstants.Error.NONE ) { in testGetValues002()
102 if ( errorCode != JDWPConstants.Error.INVALID_FIELDID ) { in testGetValues002()
105 + "(" + JDWPConstants.Error.getName(errorCode) + ")"); in testGetValues002()
108 + "(" + JDWPConstants.Error.getName(errorCode) + ")"); in testGetValues002()
123 JDWPConstants.Tag.LONG_TAG, in testGetValues002()
124 JDWPConstants.Tag.INT_TAG, in testGetValues002()
125 JDWPConstants.Tag.OBJECT_TAG, in testGetValues002()
126 JDWPConstants.Tag.OBJECT_TAG, in testGetValues002()
127 JDWPConstants.Tag.BOOLEAN_TAG, in testGetValues002()
[all …]
DGetValues005Test.java31 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
110 JDWPConstants.Tag.ARRAY_TAG, in testGetValues005()
111 JDWPConstants.Tag.ARRAY_TAG, in testGetValues005()
112 JDWPConstants.Tag.OBJECT_TAG, in testGetValues005()
113 JDWPConstants.Tag.STRING_TAG, in testGetValues005()
114 JDWPConstants.Tag.THREAD_TAG, in testGetValues005()
115 JDWPConstants.Tag.THREAD_GROUP_TAG, in testGetValues005()
116 JDWPConstants.Tag.CLASS_OBJECT_TAG, in testGetValues005()
117 JDWPConstants.Tag.CLASS_LOADER_TAG, in testGetValues005()
126 + "(" + JDWPConstants.Tag.getName(fieldTag) + ")"); in testGetValues005()
[all …]
DSignature002Test.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
102 + "(" + JDWPConstants.Tag.getName(checkedObjectFieldTag) + ")"); in testSignature002()
103 if ( checkedObjectFieldTag != JDWPConstants.Tag.OBJECT_TAG ) { in testSignature002()
108 JDWPConstants.Tag.getName(checkedObjectFieldTag) + ")" + in testSignature002()
109 ", Expected tag = " + JDWPConstants.Tag.OBJECT_TAG + "(OBJECT_TAG)"); in testSignature002()
127 if ( errorCode != JDWPConstants.Error.NONE ) { in testSignature002()
128 if ( errorCode != JDWPConstants.Error.INVALID_CLASS ) { in testSignature002()
131 + "(" + JDWPConstants.Error.getName(errorCode) + ")"); in testSignature002()
134 + "(" + JDWPConstants.Error.getName(errorCode) + ")"); in testSignature002()
156 if ( errorCode != JDWPConstants.Error.NONE ) { in testSignature002()
[all …]
DGetValuesTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
108 JDWPConstants.Tag.INT_TAG, in testGetValues001()
109 JDWPConstants.Tag.LONG_TAG, in testGetValues001()
110 JDWPConstants.Tag.OBJECT_TAG, in testGetValues001()
111 JDWPConstants.Tag.STRING_TAG, in testGetValues001()
112 JDWPConstants.Tag.ARRAY_TAG, in testGetValues001()
120 + "(" + JDWPConstants.Tag.getName(fieldTag) + ")"); in testGetValues001()
123 , JDWPConstants.Tag.getName(expectedFieldTags[k]) in testGetValues001()
124 , JDWPConstants.Tag.getName(fieldTag)); in testGetValues001()
127 case JDWPConstants.Tag.INT_TAG: in testGetValues001()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DNewInstanceTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
82 …assertEquals("VirtualMachine::ClassesBySignature returned invalid TypeTag,", JDWPConstants.TypeTag… in testNewInstance001()
83 , JDWPConstants.TypeTag.getName(JDWPConstants.TypeTag.CLASS) in testNewInstance001()
84 , JDWPConstants.TypeTag.getName(refTypeTag)); in testNewInstance001()
114 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY); in testNewInstance001()
115 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testNewInstance001()
131 .receiveCertainEvent(JDWPConstants.EventKind.METHOD_ENTRY); in testNewInstance001()
156 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY); in testNewInstance001()
185 …assertEquals("ClassType::NewInstance returned invalid newObject.tag,", JDWPConstants.Tag.OBJECT_TA… in testNewInstance001()
186 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG) in testNewInstance001()
[all …]
DNewInstanceTagTest.java21 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
48 JDWPConstants.Tag.OBJECT_TAG); in testNewInstance_Object()
57 JDWPConstants.Tag.OBJECT_TAG); in testNewInstance_MyObject()
65 JDWPConstants.Tag.STRING_TAG); in testNewInstance_String()
78 JDWPConstants.Tag.CLASS_LOADER_TAG); in testNewInstance_ClassLoader()
86 JDWPConstants.Tag.THREAD_TAG); in testNewInstance_Thread()
96 JDWPConstants.Tag.THREAD_TAG); in testNewInstance_MyThread()
113 constructorArguments.add(new Value(JDWPConstants.Tag.STRING_TAG, stringId)); in testNewInstance_ThreadGroup()
115 }, JDWPConstants.Tag.THREAD_GROUP_TAG); in testNewInstance_ThreadGroup()
125 JDWPConstants.Tag.THREAD_GROUP_TAG); in testNewInstance_MyThreadGroup()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DStatusTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
80 + JDWPConstants.ThreadStatus.getName(threadStatus) + " " in testStatus002()
81 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testStatus002()
83 if (threadStatus != JDWPConstants.ThreadStatus.RUNNING) { in testStatus002()
85 + JDWPConstants.ThreadStatus.getName(threadStatus)); in testStatus002()
88 + JDWPConstants.ThreadStatus.getName(threadStatus)); in testStatus002()
91 if (suspendStatus != JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus002()
93 + JDWPConstants.ThreadStatus.getName(suspendStatus)); in testStatus002()
96 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testStatus002()
137 + JDWPConstants.ThreadStatus.getName(threadStatus) + " " in testStatus001()
[all …]
DResumeTest.java31 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
173 if ( errorCode != JDWPConstants.Error.NONE ) { in testResume001()
176 + "(" + JDWPConstants.Error.getName(errorCode) + ")"); in testResume001()
201 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")"); in testResume001()
203 + JDWPConstants.SuspendStatus.getName(suspendStatus) + ")"); in testResume001()
205 != JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testResume001()
208 + JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED in testResume001()
209 + "(" + JDWPConstants.SuspendStatus.getName in testResume001()
210 (JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) +")"); in testResume001()
241 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")"); in testResume001()
[all …]
DFramesTest.java33 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
81 if (err != JDWPConstants.Error.NONE) { in testFrames005()
83 + "(" + JDWPConstants.Error.getName(err) + ")"); in testFrames005()
98 if (err == JDWPConstants.Error.INVALID_LENGTH) { in testFrames005()
99 logWriter.println("Caught expected error - " + JDWPConstants.Error.getName(err) in testFrames005()
103 + JDWPConstants.Error.getName(err) + "(" + err + ")" in testFrames005()
105 + JDWPConstants.Error.getName(JDWPConstants.Error.INVALID_LENGTH) in testFrames005()
106 + "(" + JDWPConstants.Error.INVALID_LENGTH + ")"); in testFrames005()
135 if (err != JDWPConstants.Error.NONE) { in testFrames004()
137 + "(" + JDWPConstants.Error.getName(err) + ")"); in testFrames004()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DAllClassesTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
81 if ( (status & JDWPConstants.ClassStatus.ARRAY) != 0 ){ in testAllClasses002()
86 + "(" + JDWPConstants.ClassStatus.getName(status)+ ")"); in testAllClasses002()
88 + Integer.toHexString(JDWPConstants.ClassStatus.ARRAY) in testAllClasses002()
90 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.ARRAY) in testAllClasses002()
94 if ( (status & JDWPConstants.ClassStatus.PRIMITIVE) != 0 ){ in testAllClasses002()
99 + "(" + JDWPConstants.ClassStatus.getName(status)+ ")"); in testAllClasses002()
101 + Integer.toHexString(JDWPConstants.ClassStatus.PRIMITIVE) in testAllClasses002()
103 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.PRIMITIVE) in testAllClasses002()
161 refTypeTagName = JDWPConstants.TypeTag.getName(refTypeTag); in testAllClasses001()
[all …]
DAllClassesWithGenericTest.java30 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
83 if ( (status & JDWPConstants.ClassStatus.ARRAY) != 0 ){ in testAllClassesWithGeneric002()
89 + "(" + JDWPConstants.ClassStatus.getName(status)+ ")"); in testAllClassesWithGeneric002()
91 + Integer.toHexString(JDWPConstants.ClassStatus.ARRAY) in testAllClassesWithGeneric002()
93 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.ARRAY) in testAllClassesWithGeneric002()
97 if ( (status & JDWPConstants.ClassStatus.PRIMITIVE) != 0 ){ in testAllClassesWithGeneric002()
103 + "(" + JDWPConstants.ClassStatus.getName(status)+ ")"); in testAllClassesWithGeneric002()
105 + Integer.toHexString(JDWPConstants.ClassStatus.PRIMITIVE) in testAllClassesWithGeneric002()
107 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.PRIMITIVE) in testAllClassesWithGeneric002()
167 refTypeTagName = JDWPConstants.TypeTag.getName(refTypeTag); in testAllClassesWithGeneric001()
[all …]

1234567