HomeSort by relevance Sort by last modified time
    Searched defs:classID (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Location.java 35 public long classID;
44 classID = 0;
52 public Location(byte tag, long classID, long methodID, long index) {
54 this.classID = classID;
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
73 return classID == loc.classID && methodID == loc.methodID
Field.java 37 private long classID;
52 classID = -1;
63 * @param classID
72 public Field(long id, long classID, String name, String signature,
75 this.classID = classID;
157 return classID;
293 return this.id == field.id && this.classID == field.classID
306 String str = "Field: id=" + id + ", classID=" + classID + ", name='
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
BreakpointTest.java 57 long classID = getClassIDBySignature(getDebuggeeClassSignature());
58 int requestID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
Breakpoint002Test.java 160 long classID = debuggeeWrapper.vmMirror.getClassID(getDebuggeeClassSignature());
161 assertTrue("Failed to find debuggee class", classID != -1);
164 int breakpointReqID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, methodName);
BreakpointMultipleTest.java 50 long classID = getClassIDBySignature(getDebuggeeClassSignature());
51 int breakpoint1 = setBreakpoint(classID);
52 int breakpoint2 = setBreakpoint(classID);
59 int breakpoint3 = setBreakpoint(classID);
80 long classID = getClassIDBySignature(getDebuggeeClassSignature());
81 int breakpoint1 = setBreakpoint(classID);
82 int breakpoint2 = setBreakpoint(classID);
112 private int setBreakpoint(long classID) {
114 return mirror.setBreakpointAtMethodBegin(classID, "breakpointTest");
BreakpointOnCatchTest.java 52 long classID = getClassIDBySignature(getDebuggeeClassSignature());
53 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME);
70 assertEquals("Invalid class ID:", classID, catchLocation.classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
BytecodesTest.java 52 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
54 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
64 packet.setNextValueAsClassID(classID);
IsObsoleteTest.java 49 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
51 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
61 packet.setNextValueAsClassID(classID);
LineTableTest.java 49 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
51 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
58 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID());
VariableTableTest.java 51 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
53 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
63 packet.setNextValueAsClassID(classID);
VariableTableWithGenericTest.java 52 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
54 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
64 packet.setNextValueAsClassID(classID);
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 68 uint32_t classID = proc.classID();
72 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
79 key[0] = (classID << 16) | SkToU32(processorKeySize);
  /external/skia/src/gpu/vk/
GrVkProgramDesc.cpp 55 uint32_t classID = proc.classID();
59 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
66 key[0] = (classID << 16) | SkToU32(processorKeySize);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
LengthTest.java 55 // obtain classID
56 long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayReferenceDebuggee;");
62 packet.setNextValueAsReferenceTypeID(classID);
75 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 10);
78 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 8);
81 checkArrayLength(classID, fieldID, JDWPConstants.Error.INVALID_ARRAY, 0);
89 private void checkArrayLength(long classID, long fieldID, int error, int length) {
90 //System.err.println("classID="+classID);
95 packet.setNextValueAsReferenceTypeID(classID);
    [all...]
GetValuesTest.java 57 // obtain classID
58 long classID = getClassIDBySignature(debuggeeSig);
64 packet.setNextValueAsReferenceTypeID(classID);
78 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
84 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
90 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
96 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
102 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
108 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
115 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 10
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
SetValuesTest.java 54 long classID = getClassIDBySignature(getDebuggeeSignature());
56 FieldInfo[] fields = jdwpGetFieldIDs(classID);
61 testField(classID, field);
65 private void testField(long classID, FieldInfo fieldInfo) throws UnsupportedEncodingException {
72 testField(classID, fieldInfo, new Value(Byte.MIN_VALUE));
73 testField(classID, fieldInfo, new Value(Byte.MAX_VALUE));
74 testField(classID, fieldInfo, new Value((byte)0));
77 testField(classID, fieldInfo, new Value((char)Character.MAX_VALUE));
78 testField(classID, fieldInfo, new Value((char)Character.MIN_VALUE));
81 testField(classID, fieldInfo, new Value((float)Float.MIN_VALUE))
    [all...]
SuperClassTest.java 43 private ReplyPacket jdwpGetSuperClassReply(long classID, int errorExpected) {
47 packet.setNextValueAsClassID(classID);
87 long classID = getClassIDBySignature("Ljava/lang/String;");
89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
97 long classID = getClassIDBySignature("[Ljava/lang/String;");
99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
107 long classID = getClassIDBySignature("[I");
109 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
116 long classID = getClassIDBySignature(getDebuggeeSignature());
118 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
BreakpointTest.java 62 long classID = debuggeeWrapper.vmMirror.getClassID(DEBUGGEE_SIGNATURE);
66 classID, METHOD_NAME);
ClassObjectIDTest.java 49 * <BR>It runs multiSessionDebuggee, gets classID and classObjectID, re-connects
58 long classID = debuggeeWrapper.vmMirror.getClassID(DEBUGGEE_SIGNATURE);
59 long classObjectID = debuggeeWrapper.vmMirror.getClassObjectId(classID);
71 logWriter.println("=> Trying to get classID using old classObjectID");
MethodEntryExitTest.java 65 long classID = debuggeeWrapper.vmMirror.getClassID(DEBUGGEE_SIGNATURE);
70 classID, METHOD_NAME);
RefTypeIDTest.java 49 * <BR>It runs multiSessionDebuggee, gets classID, re-connects
50 * and tries to set request for BREAKPOINT event using classID, received before
58 long classID = debuggeeWrapper.vmMirror.getClassID(DEBUGGEE_SIGNATURE);
71 logWriter.println("=> Trying to set a breakpoint using old classID");
75 .setBreakpointAtMethodBegin(classID, METHOD_NAME);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
ThisObjectTest.java 111 String methodName = debuggeeWrapper.vmMirror.getMethodName(frameIDs[i].location.classID, frameIDs[i].location.methodID);
114 String methodSig = debuggeeWrapper.vmMirror.getMethodSignature(frameIDs[i].location.classID, frameIDs[i].location.methodID);
117 String classSig = debuggeeWrapper.vmMirror.getClassSignature(frameIDs[i].location.classID);
137 long classID = getObjectReferenceType(thisObject.objectID);
138 logWriter.println("==> class=" + debuggeeWrapper.vmMirror.getClassSignature(classID));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
StopTest.java 66 long classID =
70 debuggeeWrapper.vmMirror.getFieldID(classID, StopDebuggee.FIELD_NAME);
77 packet.setNextValueAsReferenceTypeID(classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DisposeDuringInvokeTest.java 59 long classID = getClassIDBySignature(getDebuggeeClassSignature());
60 long invokedMethodId = getMethodID(classID,
62 int breakpointID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
65 long thisObjectId = getReceiverObjectId(classID);
79 command.setNextValueAsClassID(classID);
110 * @param classID
114 private long getReceiverObjectId(long classID) {
115 long thisObjectFieldID = checkField(classID, DisposeDuringInvokeDebuggee.THIS_FIELD_NAME);
117 debuggeeWrapper.vmMirror.getReferenceTypeValue(classID, thisObjectFieldID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPInvokeMethodSuspendedTwiceTestCase.java 60 long classID = getClassIDBySignature(getDebuggeeClassSignature());
61 long invokeMethodID = getMethodID(classID, invokedMethodName);
65 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
90 CommandPacket invokeMethodCommand = buildInvokeCommand(eventThreadOne, classID,
124 CommandPacket anotherInvokeMethodCommand = buildInvokeCommand(eventThreadOne, classID,
162 * @param classID
170 protected abstract CommandPacket buildInvokeCommand(long threadId, long classID,

Completed in 878 milliseconds

1 2 3