Home
last modified time | relevance | path

Searched refs:InstancesCommand (Results 1 – 5 of 5) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DInstancesTest.java89 CommandPacket InstancesCommand = new CommandPacket( in runTestInstances() local
91 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in runTestInstances()
92 InstancesCommand.setNextValueAsReferenceTypeID(mockClassRefTypeID); in runTestInstances()
93 InstancesCommand.setNextValueAsInt(maxInstances); in runTestInstances()
96 .performCommand(InstancesCommand); in runTestInstances()
97 InstancesCommand = null; in runTestInstances()
220 CommandPacket InstancesCommand = new CommandPacket( in testInstances_String() local
222 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in testInstances_String()
223 InstancesCommand.setNextValueAsReferenceTypeID(stringRefTypeID); in testInstances_String()
224 InstancesCommand.setNextValueAsInt(maxInstances); in testInstances_String()
[all …]
DClassLoaderTest.java88 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in testClassLoader003()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DReferringObjectsTest.java115 CommandPacket InstancesCommand = new CommandPacket( in DoTestReferringObjects() local
117 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in DoTestReferringObjects()
120 InstancesCommand.setNextValueAsReferenceTypeID(referreeObjTypeID); in DoTestReferringObjects()
121 InstancesCommand.setNextValueAsInt(1); in DoTestReferringObjects()
123 ReplyPacket checkedReply = debuggeeWrapper.vmMirror.performCommand(InstancesCommand); in DoTestReferringObjects()
124 InstancesCommand = null; in DoTestReferringObjects()
192 CommandPacket InstancesCommand = new CommandPacket( in testReferringObjects_IllegalArgument() local
194 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in testReferringObjects_IllegalArgument()
197 InstancesCommand.setNextValueAsReferenceTypeID(referreeObjTypeID); in testReferringObjects_IllegalArgument()
198 InstancesCommand.setNextValueAsInt(1); in testReferringObjects_IllegalArgument()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DForceEarlyReturn006Test.java43 CommandPacket InstancesCommand = new CommandPacket( in getObjectID() local
45 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in getObjectID()
48 InstancesCommand.setNextValueAsReferenceTypeID(testThreadTypeID); in getObjectID()
49 InstancesCommand.setNextValueAsInt(1); in getObjectID()
52 .performCommand(InstancesCommand); in getObjectID()
53 InstancesCommand = null; in getObjectID()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPCommands.java122 public static final byte InstancesCommand = 16; field in JDWPCommands.ReferenceTypeCommandSet