Home
last modified time | relevance | path

Searched refs:fieldsReply (Results 1 – 2 of 2) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DFieldsTest.java73 ReplyPacket fieldsReply = debuggeeWrapper.vmMirror.performCommand(fieldsCommand); in testFields001() local
75 checkReplyPacket(fieldsReply, thisCommandName); in testFields001()
77 int returnedFieldsNumber = fieldsReply.getNextValueAsInt(); in testFields001()
109 long returnedFieldID = fieldsReply.getNextValueAsFieldID(); in testFields001()
110 String returnedFieldName = fieldsReply.getNextValueAsString(); in testFields001()
111 String returnedFieldSignature = fieldsReply.getNextValueAsString(); in testFields001()
112 int returnedFieldModifiers = fieldsReply.getNextValueAsInt(); in testFields001()
197 assertAllDataRead(fieldsReply); in testFields001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java482 ReplyPacket fieldsReply = debuggeeWrapper.vmMirror in checkFields() local
485 checkReplyPacket(fieldsReply, "ReferenceType::Fields command"); in checkFields()
487 int returnedFieldsNumber = fieldsReply.getNextValueAsInt(); in checkFields()
500 long returnedFieldID = fieldsReply.getNextValueAsFieldID(); in checkFields()
501 String returnedFieldName = fieldsReply.getNextValueAsString(); in checkFields()
502 String returnedFieldSignature = fieldsReply.getNextValueAsString(); in checkFields()
503 int returnedFieldModifiers = fieldsReply.getNextValueAsInt(); in checkFields()
593 assertAllDataRead(fieldsReply); in checkFields()