Home
last modified time | relevance | path

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

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DInstancesTest.java99 CommandPacket InstancesCommand = new CommandPacket( in runTestInstances() local
101 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in runTestInstances()
102 InstancesCommand.setNextValueAsReferenceTypeID(mockClassRefTypeID); in runTestInstances()
103 InstancesCommand.setNextValueAsInt(maxInstances); in runTestInstances()
106 .performCommand(InstancesCommand); in runTestInstances()
107 InstancesCommand = null; in runTestInstances()
240 CommandPacket InstancesCommand = new CommandPacket( in testInstances_String() local
242 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in testInstances_String()
243 InstancesCommand.setNextValueAsReferenceTypeID(stringRefTypeID); in testInstances_String()
244 InstancesCommand.setNextValueAsInt(maxInstances); in testInstances_String()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DReferringObjectsTest.java130 CommandPacket InstancesCommand = new CommandPacket( in DoTestReferringObjects() local
132 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in DoTestReferringObjects()
135 InstancesCommand.setNextValueAsReferenceTypeID(referreeObjTypeID); in DoTestReferringObjects()
136 InstancesCommand.setNextValueAsInt(1); in DoTestReferringObjects()
138 ReplyPacket checkedReply = debuggeeWrapper.vmMirror.performCommand(InstancesCommand); in DoTestReferringObjects()
139 InstancesCommand = null; in DoTestReferringObjects()
212 CommandPacket InstancesCommand = new CommandPacket( in testReferringObjects_IllegalArgument() local
214 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in testReferringObjects_IllegalArgument()
217 InstancesCommand.setNextValueAsReferenceTypeID(referreeObjTypeID); in testReferringObjects_IllegalArgument()
218 InstancesCommand.setNextValueAsInt(1); in testReferringObjects_IllegalArgument()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DForceEarlyReturn006Test.java51 CommandPacket InstancesCommand = new CommandPacket( in getObjectID() local
53 JDWPCommands.ReferenceTypeCommandSet.InstancesCommand); in getObjectID()
56 InstancesCommand.setNextValueAsReferenceTypeID(testThreadTypeID); in getObjectID()
57 InstancesCommand.setNextValueAsInt(1); in getObjectID()
60 .performCommand(InstancesCommand); in getObjectID()
61 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