Home
last modified time | relevance | path

Searched refs:methodID (Results 1 – 25 of 38) 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.java53 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME); in testBreakpointOnCatch() local
71 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.java81 long methodID = getMethodID(refTypeID, BREAKPOINT_METHOD_NAME); in testSingleStepToLocation() local
82 ReplyPacket lineTableReply = getLineTable(refTypeID, methodID); in testSingleStepToLocation()
98 refTypeID, methodID, lastLineCodeIndex); in testSingleStepToLocation()
DExceptionUncaughtTest.java116 debuggeeThrowMethodID != throwLocation.methodID) { in testExceptionUncaughtEvent_ThrowLocation()
175 return location.classID == 0 && location.methodID == 0 in isNullLocation()
DExceptionCaughtTest.java204 debuggeeThrowMethodID != throwLocation.methodID) { in runThrowLocationTest()
250 debuggeeThrowMethodID != catchLocation.methodID) { in runCatchLocationTest()
/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()
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index; in toString()
73 return classID == loc.classID && methodID == loc.methodID in equals()
DVmMirror.java128 long methodID = getMethodID(typeID, breakpoint.methodName); in setBreakpoint() local
131 Location location = new Location(typeTag, typeID, methodID, in setBreakpoint()
192 long methodID = getMethodID(typeID, breakpoint.methodName); in setCountableBreakpoint() local
198 mod1.loc = new Location(typeTag, typeID, methodID, breakpoint.index); in setCountableBreakpoint()
234 long methodID = getMethodID(classID, methodName); in setBreakpointAtMethodBegin() local
236 ReplyPacket lineTableReply = getLineTable(classID, methodID); in setBreakpointAtMethodBegin()
259 classID, methodID, lineCodeIndex); in setBreakpointAtMethodBegin()
873 long methodID = -1; in getMethodID() local
881 methodID = reply.getNextValueAsMethodID(); in getMethodID()
892 methodID = -1; in getMethodID()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
DJDWPMethodTestCase.java42 private long methodID; field in JDWPMethodTestCase.MethodInfo
47 public MethodInfo(long methodID, String name, String signature, in MethodInfo() argument
50 this.methodID = methodID; in MethodInfo()
60 return methodID; in getMethodID()
81 return ""+methodID+" "+name+" "+signature+" "+modBits; in toString()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DPopFramesTest.java102 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesTest001() local
103 if (methodID == -1) { in testPopFramesTest001()
108 if (frameInfos[i].location.methodID == methodID) { in testPopFramesTest001()
150 if (frameInfos[i].location.methodID != newFrameInfos[i in testPopFramesTest001()
151 - numberOfPoppedFrames].location.methodID) { in testPopFramesTest001()
181 frameInfos[i].location.methodID); in printStackFrame()
DPopFrames002Test.java113 long methodID = getMethodID(refTypeID, methodToPop); in testPopSeveralFrames() local
114 if (methodID == -1) { in testPopSeveralFrames()
119 if (frameInfos[j].location.methodID == methodID) { in testPopSeveralFrames()
154 if (frameInfos[i].location.methodID != newFrameInfos[i in testPopSeveralFrames()
155 - numberOfPoppedFrames].location.methodID) { in testPopSeveralFrames()
333 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesWithInvokeMethods() local
336 if (frameInfos[j].location.methodID == methodID) { in testPopFramesWithInvokeMethods()
448 frameInfos[i].location.methodID); in printStackFrame()
DJDWPStackFrameAccessTest.java331 protected VarInfo getVariableInfo(long classID, long methodID, String variableName) { in getVariableInfo() argument
332 VarInfo[] variables = jdwpGetVariableTable(classID, methodID); in getVariableInfo()
355 protected FrameInfo getFrameInfo(long threadID, long classID, long methodID) { in getFrameInfo() argument
364 frameInfo.location.methodID == methodID) { in getFrameInfo()
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()
DJDWPStackFrameTestCase.java124 protected VarInfo[] jdwpGetVariableTable(long classID, long methodID) { in jdwpGetVariableTable() argument
129 packet.setNextValueAsMethodID(methodID); in jdwpGetVariableTable()
/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.java89 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames005()
143 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames004()
198 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames003()
259 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames002()
285 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames002()
354 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames001()
382 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/ClassType/
DNewInstanceTest.java98 long methodID = reply.getNextValueAsMethodID(); in testNewInstance001() local
102 logWriter.println(" methodID=" + methodID + "; name=" + name in testNewInstance001()
105 targetMethodID = methodID; in testNewInstance001()
309 long methodID = reply.getNextValueAsMethodID(); in testNewInstance002() local
313 logWriter.println(" methodID=" + methodID + "; name=" + name in testNewInstance002()
316 targetMethodID = methodID; in testNewInstance002()
DInvokeMethod002Test.java96 long methodID = reply.getNextValueAsMethodID(); in testInvokeMethod() local
100 logWriter.println(" methodID=" + methodID + " name=" + name in testInvokeMethod()
103 targetMethodID = methodID; in testInvokeMethod()
/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/share/
DJDWPTestCase.java197 long methodID = reply.getNextValueAsMethodID(); in getMethodID() local
202 return methodID; in getMethodID()
217 protected ReplyPacket getLineTable(long classID, long methodID) { in getLineTable() argument
222 lineTableCommand.setNextValueAsMethodID(methodID); in getLineTable()
236 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/DebuggerOnDemand/
DLaunchedDebugger.java218 frameInfos[i].location.methodID); in printStackFrame()
227 protected String getMethodName(long classID, long methodID) { in getMethodName() argument
242 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