Home
last modified time | relevance | path

Searched refs:methodID (Results 1 – 25 of 47) sorted by relevance

12

/external/oj-libjdwp/src/share/javavm/export/
Djni.h234 (JNIEnv *env, jclass cls, jmethodID methodID, jboolean isStatic);
278 (JNIEnv *env, jclass clazz, jmethodID methodID, ...);
280 (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
282 (JNIEnv *env, jclass clazz, jmethodID methodID, const jvalue *args);
293 (JNIEnv *env, jobject obj, jmethodID methodID, ...);
295 (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
297 (JNIEnv *env, jobject obj, jmethodID methodID, const jvalue * args);
300 (JNIEnv *env, jobject obj, jmethodID methodID, ...);
302 (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
304 (JNIEnv *env, jobject obj, jmethodID methodID, const jvalue * args);
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DCombinedEventsTestCase.java54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in printMethodLineTable() local
55 if ( methodID == -1 ) { in printMethodLineTable()
66 packet.setNextValueAsMethodID(methodID); in printMethodLineTable()
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodStartCodeIndex() local
94 if ( methodID == -1 ) { in getMethodStartCodeIndex()
105 packet.setNextValueAsMethodID(methodID); in getMethodStartCodeIndex()
117 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodEndCodeIndex() local
118 if ( methodID == -1 ) { in getMethodEndCodeIndex()
129 packet.setNextValueAsMethodID(methodID); in getMethodEndCodeIndex()
141 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodEntryLocation() local
[all …]
DBreakpointOnCatchTest.java52 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME); in testBreakpointOnCatch() local
70 assertEquals("Invalid method ID:", methodID, catchLocation.methodID); in testBreakpointOnCatch()
DExceptionBaseTest.java96 if (location.classID != 0 && location.methodID != 0) { in dumpLocation()
98 methodName = getMethodName(location.classID, location.methodID); in dumpLocation()
104 builder.append("0x" + Long.toHexString(location.methodID)); in dumpLocation()
DSingleStepWithLocationTest.java80 long methodID = getMethodID(refTypeID, BREAKPOINT_METHOD_NAME); in testSingleStepToLocation() local
81 ReplyPacket lineTableReply = getLineTable(refTypeID, methodID); in testSingleStepToLocation()
97 refTypeID, methodID, lastLineCodeIndex); in testSingleStepToLocation()
DExceptionUncaughtTest.java117 debuggeeThrowMethodID != throwLocation.methodID) { in testExceptionUncaughtEvent_ThrowLocation()
176 return location.classID == 0 && location.methodID == 0 in isNullLocation()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DLocation.java36 public long methodID; field in Location
45 methodID = 0; in Location()
52 public Location(byte tag, long classID, long methodID, long index) { in Location() argument
55 this.methodID = methodID; in Location()
64 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index; in toString()
75 return classID == loc.classID && methodID == loc.methodID in equals()
DMethod.java25 private final long methodID; field in Method
31 public Method(long methodID, String name, String signature, String genericSignature, in Method() argument
33 this.methodID = methodID; in Method()
44 return methodID; in getMethodID()
77 return "" + methodID + " " + name + " " + signature + " " + modBits; in toString()
DVmMirror.java143 long methodID = getMethodID(typeID, breakpoint.methodName); in setCountableBreakpoint() local
146 .setLocationOnly(new Location(typeTag, typeID, methodID, breakpoint.index)) in setCountableBreakpoint()
176 long methodID = getMethodID(classID, methodName); in setBreakpointAtMethodBegin() local
178 ReplyPacket lineTableReply = getLineTable(classID, methodID); in setBreakpointAtMethodBegin()
201 classID, methodID, lineCodeIndex); in setBreakpointAtMethodBegin()
897 public String getMethodName(long classID, long methodID) { in getMethodName() argument
900 if (methodID == method.getMethodID()) { in getMethodName()
1250 long methodID = reply.getNextValueAsMethodID(); in getMethods() local
1259 methodID, in getMethods()
1894 public final List<Variable> getVariableTable(long classID, long methodID) { in getVariableTable() argument
[all …]
/external/webrtc/modules/utility/source/
Djvm_android.cc105 jboolean GlobalRef::CallBooleanMethod(jmethodID methodID, ...) { in CallBooleanMethod() argument
107 va_start(args, methodID); in CallBooleanMethod()
108 jboolean res = jni_->CallBooleanMethodV(j_object_, methodID, args); in CallBooleanMethod()
114 jint GlobalRef::CallIntMethod(jmethodID methodID, ...) { in CallIntMethod() argument
116 va_start(args, methodID); in CallIntMethod()
117 jint res = jni_->CallIntMethodV(j_object_, methodID, args); in CallIntMethod()
123 void GlobalRef::CallVoidMethod(jmethodID methodID, ...) { in CallVoidMethod() argument
125 va_start(args, methodID); in CallVoidMethod()
126 jni_->CallVoidMethodV(j_object_, methodID, args); in CallVoidMethod()
166 jobject JavaClass::CallStaticObjectMethod(jmethodID methodID, ...) { in CallStaticObjectMethod() argument
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DPopFramesTest.java101 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesTest001() local
102 if (methodID == -1) { in testPopFramesTest001()
107 if (frameInfos[i].location.methodID == methodID) { in testPopFramesTest001()
149 if (frameInfos[i].location.methodID != newFrameInfos[i in testPopFramesTest001()
150 - numberOfPoppedFrames].location.methodID) { in testPopFramesTest001()
180 frameInfos[i].location.methodID); in printStackFrame()
DPopFrames002Test.java112 long methodID = getMethodID(refTypeID, methodToPop); in testPopSeveralFrames() local
113 if (methodID == -1) { in testPopSeveralFrames()
118 if (frameInfos[j].location.methodID == methodID) { in testPopSeveralFrames()
153 if (frameInfos[i].location.methodID != newFrameInfos[i in testPopSeveralFrames()
154 - numberOfPoppedFrames].location.methodID) { in testPopSeveralFrames()
328 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesWithInvokeMethods() local
331 if (frameInfos[j].location.methodID == methodID) { in testPopFramesWithInvokeMethods()
443 frameInfos[i].location.methodID); in printStackFrame()
DJDWPStackFrameAccessTest.java379 protected Frame.Variable getVariableInfo(long classID, long methodID, String variableName) { in getVariableInfo() argument
380 Frame.Variable[] variables = jdwpGetVariableTable(classID, methodID); in getVariableInfo()
403 protected FrameInfo getFrameInfo(long threadID, long classID, long methodID) { in getFrameInfo() argument
412 frameInfo.location.methodID == methodID) { in getFrameInfo()
DJDWPStackTraceBaseTest.java116 frameIDs[i].location.methodID); in findFrameInfo()
118 logWriter.println("=> methodID = " + frameIDs[i].location.methodID); in findFrameInfo()
128 logWriter.println("=> methodID = " + frameInfo.location.methodID); in findFrameInfo()
/external/webrtc/modules/utility/include/
Djvm_android.h50 jboolean CallBooleanMethod(jmethodID methodID, ...);
51 jint CallIntMethod(jmethodID methodID, ...);
52 void CallVoidMethod(jmethodID methodID, ...);
68 jobject CallStaticObjectMethod(jmethodID methodID, ...);
69 jint CallStaticIntMethod(jmethodID methodID, ...);
/external/emma/core/java12/com/vladium/emma/report/lcov/
DReportGenerator.java230 final int methodID = method.getID(); in emitFileCoverage() local
237 $assert.ASSERT(ccoverage.length > methodID, "index bounds"); in emitFileCoverage()
238 $assert.ASSERT(ccoverage[methodID] != null, "null: coverage"); in emitFileCoverage()
239 $assert.ASSERT(ccoverage[methodID].length > 0, "empty array"); in emitFileCoverage()
241 covered = ccoverage[methodID][0]; in emitFileCoverage()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DFramesTest.java90 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames005()
144 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames004()
199 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames003()
260 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames002()
286 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames002()
355 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames001()
383 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames001()
/external/emma/core/java12/com/vladium/emma/report/
DClassItem.java123 final int methodID = method.getID (); in getAggregate() local
125 … final boolean [] mcoverage = ccoverage == null ? null : ccoverage [methodID]; in getAggregate()
127 … final MethodDescriptor methoddesc = methoddescs [methodID]; in getAggregate()
DSrcFileItem.java151 final int methodID = method.getID (); in getAggregate() local
153 … final boolean [] mcoverage = ccoverage == null ? null : ccoverage [methodID]; in getAggregate()
155 … final MethodDescriptor methoddesc = methoddescs [methodID]; in getAggregate()
/external/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c474 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
476 if (methodID == 0) in iJIT_GetNewMethodID()
479 return methodID++; in iJIT_GetNewMethodID()
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c476 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
478 if (methodID == 0) in iJIT_GetNewMethodID()
481 return methodID++; in iJIT_GetNewMethodID()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c474 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
476 if (methodID == 0) in iJIT_GetNewMethodID()
479 return methodID++; in iJIT_GetNewMethodID()
/external/drrickorang/LoopbackApp/app/src/main/cpp/
Djni_native.c46 jmethodID methodID = (*env)->GetMethodID(env, cls, "<init>", "(III)V"); in Java_org_drrickorang_loopback_NativeAudioThread_nativeComputeDefaultSettings() local
47 jobject testSettings = (*env)->NewObject(env, cls, methodID, in Java_org_drrickorang_loopback_NativeAudioThread_nativeComputeDefaultSettings()
204 jmethodID methodID = (*env)->GetMethodID(env, cls, "<init>", "([I[SZS)V"); in getCallbackTimes() local
205 jobject callbackTimes=(*env)->NewObject(env,cls, methodID, timeStamps, callbackLengths, in getCallbackTimes()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DSyntheticMethodsTest.java93 long methodID = methodsReply.getNextValueAsMethodID(); in runTestSyntheticMethods() local
96 logWriter.println("\n=> Method ID = " + methodID); in runTestSyntheticMethods()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DResume002Test.java79 long methodID = getMethodID(classID, BREAKPOINT_METHOD_NAME); in installBreakpoint() local
80 Location location = new Location(JDWPConstants.TypeTag.CLASS, classID, methodID, 0); in installBreakpoint()

12