Home
last modified time | relevance | path

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

12

/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.java82 long methodID = getMethodID(refTypeID, BREAKPOINT_METHOD_NAME); in testSingleStepToLocation() local
83 ReplyPacket lineTableReply = getLineTable(refTypeID, methodID); in testSingleStepToLocation()
99 refTypeID, methodID, lastLineCodeIndex); in testSingleStepToLocation()
DEventWithExceptionTest.java323 assertEquals("Invalid method ID", methodId, eventLocation.methodID); in runFieldWatchpointTest()
397 … if (expectedClassId != actualLocation.classID || expectedMethodId != actualLocation.methodID) { in checkLocation()
401 … String actualMethodName = getMethodName(actualLocation.classID, actualLocation.methodID); in checkLocation()
405 … actualClassName, actualMethodName, actualLocation.classID, actualLocation.methodID)); in checkLocation()
/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()
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()
880 long methodID = -1; in getMethodID() local
888 methodID = reply.getNextValueAsMethodID(); in getMethodID()
899 methodID = -1; in getMethodID()
903 return methodID; in getMethodID()
913 public String getMethodName(long classID, long methodID) { in getMethodName() argument
[all …]
/external/webrtc/webrtc/modules/utility/source/
Djvm_android.cc104 jboolean GlobalRef::CallBooleanMethod(jmethodID methodID, ...) { in CallBooleanMethod() argument
106 va_start(args, methodID); in CallBooleanMethod()
107 jboolean res = jni_->CallBooleanMethodV(j_object_, methodID, args); in CallBooleanMethod()
113 jint GlobalRef::CallIntMethod(jmethodID methodID, ...) { in CallIntMethod() argument
115 va_start(args, methodID); in CallIntMethod()
116 jint res = jni_->CallIntMethodV(j_object_, methodID, args); in CallIntMethod()
122 void GlobalRef::CallVoidMethod(jmethodID methodID, ...) { in CallVoidMethod() argument
124 va_start(args, methodID); in CallVoidMethod()
125 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/Method/
DJDWPMethodTestCase.java43 private long methodID; field in JDWPMethodTestCase.MethodInfo
48 public MethodInfo(long methodID, String name, String signature, in MethodInfo() argument
51 this.methodID = methodID; in MethodInfo()
61 return methodID; in getMethodID()
83 return ""+methodID+" "+name+" "+signature+" "+modBits; in toString()
/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()
DJDWPStackTraceBaseTest.java115 frameIDs[i].location.methodID); in findFrameInfo()
117 logWriter.println("=> methodID = " + frameIDs[i].location.methodID); in findFrameInfo()
127 logWriter.println("=> methodID = " + frameInfo.location.methodID); in findFrameInfo()
DJDWPStackFrameAccessTest.java378 protected VarInfo getVariableInfo(long classID, long methodID, String variableName) { in getVariableInfo() argument
379 VarInfo[] variables = jdwpGetVariableTable(classID, methodID); in getVariableInfo()
402 protected FrameInfo getFrameInfo(long threadID, long classID, long methodID) { in getFrameInfo() argument
411 frameInfo.location.methodID == methodID) { in getFrameInfo()
/external/webrtc/webrtc/modules/utility/include/
Djvm_android.h47 jboolean CallBooleanMethod(jmethodID methodID, ...);
48 jint CallIntMethod(jmethodID methodID, ...);
49 void CallVoidMethod(jmethodID methodID, ...);
65 jobject CallStaticObjectMethod(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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java216 long methodID = reply.getNextValueAsMethodID(); in getMethodID() local
221 return methodID; in getMethodID()
247 long methodID = reply.getNextValueAsMethodID(); in getMethodID() local
252 return methodID; in getMethodID()
267 protected ReplyPacket getLineTable(long classID, long methodID) { in getLineTable() argument
272 lineTableCommand.setNextValueAsMethodID(methodID); in getLineTable()
286 protected String getMethodName(long classID, long methodID) { in getMethodName() argument
299 if (mid == methodID) { in getMethodName()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DNewInstanceTest.java99 long methodID = reply.getNextValueAsMethodID(); in testNewInstance001() local
103 logWriter.println(" methodID=" + methodID + "; name=" + name in testNewInstance001()
106 targetMethodID = methodID; in testNewInstance001()
310 long methodID = reply.getNextValueAsMethodID(); in testNewInstance002() local
314 logWriter.println(" methodID=" + methodID + "; name=" + name in testNewInstance002()
317 targetMethodID = methodID; in testNewInstance002()
/external/v8/src/third_party/vtune/
Djitprofiling.cc492 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
494 if (methodID == 0) in iJIT_GetNewMethodID()
497 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/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/DebuggerOnDemand/
DLaunchedDebugger.java224 frameInfos[i].location.methodID); in printStackFrame()
234 protected String getMethodName(long classID, long methodID) { in getMethodName() argument
249 if (mid == methodID) { in getMethodName()
/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