Searched defs:refTypeID (Results 1 - 3 of 3) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DSingleStepThroughReflectionTest.java68 long refTypeID = getClassIDBySignature(DEBUGGEE_SIGNATURE);
70 logWriter.println("=> referenceTypeID for Debuggee class = " + refTypeID);
75 refTypeID, BREAKPOINT_METHOD);
101 setRequestCommand.setNextValueAsReferenceTypeID(refTypeID);
121 checkSingleStepEvent((EventThreadLocation) parsedEvent, refTypeID);
129 long refTypeID) {
131 long expectedMethodID = getMethodID(refTypeID, EVENT_METHOD);
142 assertEquals("Stopped in wrong class", refTypeID, location.classID);
128 checkSingleStepEvent(EventThreadLocation eventThreadLocation, long refTypeID) argument
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPTestCase.java435 * @param refTypeID -
441 protected long[] checkFields(long refTypeID, String checkedFieldNames[]) { argument
442 return checkFields(refTypeID, checkedFieldNames, null, null);
448 * @param refTypeID -
454 protected long checkField(long refTypeID, String fieldName) { argument
455 return checkFields(refTypeID, new String[] { fieldName }, null, null)[0];
461 * @param refTypeID -
471 protected long[] checkFields(long refTypeID, String checkedFieldNames[], argument
483 fieldsCommand.setNextValueAsReferenceTypeID(refTypeID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java2078 * @param refTypeID
2084 public final Value[] getReferenceTypeValues(long refTypeID, long[] fieldIDs) { argument
2093 command.setNextValueAsReferenceTypeID(refTypeID);
2112 * @param refTypeID
2118 public final Value getReferenceTypeValue(long refTypeID, long fieldID) { argument
2119 Value[] values = getReferenceTypeValues(refTypeID, new long[]{fieldID});
2193 * @param refTypeID
2197 public final String getReferenceTypeSignature(long refTypeID) { argument
2201 command.setNextValueAsReferenceTypeID(refTypeID);

Completed in 191 milliseconds