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.java434 ReplyPacket fieldsReply = debuggeeWrapper.vmMirror in checkFields() local
437 checkReplyPacket(fieldsReply, "ReferenceType::Fields command"); in checkFields()
439 int returnedFieldsNumber = fieldsReply.getNextValueAsInt(); in checkFields()
452 long returnedFieldID = fieldsReply.getNextValueAsFieldID(); in checkFields()
453 String returnedFieldName = fieldsReply.getNextValueAsString(); in checkFields()
454 String returnedFieldSignature = fieldsReply.getNextValueAsString(); in checkFields()
455 int returnedFieldModifiers = fieldsReply.getNextValueAsInt(); in checkFields()
545 assertAllDataRead(fieldsReply); in checkFields()