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

1 2

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Location.java 36 public long methodID;
45 methodID = 0;
52 public Location(byte tag, long classID, long methodID, long index) {
55 this.methodID = methodID;
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
73 return classID == loc.classID && methodID == loc.methodID
VmMirror.java 128 long methodID = getMethodID(typeID, breakpoint.methodName);
131 Location location = new Location(typeTag, typeID, methodID,
192 long methodID = getMethodID(typeID, breakpoint.methodName);
198 mod1.loc = new Location(typeTag, typeID, methodID, breakpoint.index);
223 long methodID = getMethodID(classID, methodName);
225 ReplyPacket lineTableReply = getLineTable(classID, methodID);
248 classID, methodID, lineCodeIndex);
842 * @return received MethodID
848 long methodID = -1;
853 // Get methodID from received packe
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
JDWPMethodTestCase.java 42 private long methodID;
47 public MethodInfo(long methodID, String name, String signature,
50 this.methodID = methodID;
57 * @return Returns the methodID.
60 return methodID;
81 return ""+methodID+" "+name+" "+signature+" "+modBits;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTestCase.java 54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
55 if ( methodID == -1 ) {
57 ("## printMethodLineTable(): Can NOT get methodID for classID = "
66 packet.setNextValueAsMethodID(methodID);
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
94 if ( methodID == -1 ) {
96 ("## getMethodStartCodeIndex(): Can NOT get methodID for classID = "
105 packet.setNextValueAsMethodID(methodID);
117 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
118 if ( methodID == -1 )
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
PopFramesTest.java 102 long methodID = getMethodID(refTypeID, methodToPop);
103 if (methodID == -1) {
104 logWriter.println("##FAILURE: error during getting methodID of " + methodToPop);
108 if (frameInfos[i].location.methodID == methodID) {
150 if (frameInfos[i].location.methodID != newFrameInfos[i
151 - numberOfPoppedFrames].location.methodID) {
181 frameInfos[i].location.methodID);
GetValuesTest.java 123 long methodID = 0;
130 frameIDs[i].location.methodID);
132 logWriter.println("=> methodID = " + frameIDs[i].location.methodID);
136 methodID = frameIDs[i].location.methodID;
139 frameIDs[i].location.methodID);
146 logWriter.println("=> methodID = " + methodID);
156 varInfos = jdwpGetVariableTable(refTypeID, methodID);
    [all...]
PopFrames002Test.java 85 // long methodID = getMethodID(refTypeID, breakpointMethodName);
113 long methodID = getMethodID(refTypeID, methodToPop);
114 if (methodID == -1) {
115 logWriter.println("##FAILURE: error during getting methodID of " + methodToPop);
119 if (frameInfos[j].location.methodID == methodID) {
154 if (frameInfos[i].location.methodID != newFrameInfos[i
155 - numberOfPoppedFrames].location.methodID) {
333 long methodID = getMethodID(refTypeID, methodToPop);
336 if (frameInfos[j].location.methodID == methodID)
    [all...]
SetValuesTest.java 122 long methodID = 0;
129 frameIDs[i].location.methodID);
131 logWriter.println("=> methodID = " + frameIDs[i].location.methodID);
135 methodID = frameIDs[i].location.methodID;
138 frameIDs[i].location.methodID);
145 logWriter.println("=> methodID = " + methodID);
155 varInfos = jdwpGetVariableTable(refTypeID, methodID);
    [all...]
  /external/chromium_org/v8/src/third_party/vtune/
jitprofiling.cc 492 static unsigned int methodID = 0x100000;
494 if (methodID == 0)
497 return methodID++;
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c 475 static unsigned int methodID = 0x100000;
477 if (methodID == 0)
480 return methodID++;
  /frameworks/opt/net/wifi/service/jni/
jni_helper.cpp 388 jmethodID methodID = env->GetStaticMethodID(cls, method, signature);
394 env->CallStaticVoidMethodV(cls, methodID, params);
  /development/ndk/platforms/android-17/samples/Teapot/jni/
TeapotNativeActivity.cpp 405 jmethodID methodID = jni->GetMethodID( clazz, "showUI", "()V" );
406 jni->CallVoidMethod( app_->activity->clazz, methodID );
419 jmethodID methodID = jni->GetMethodID( clazz, "updateFPS", "(F)V" );
420 jni->CallVoidMethod( app_->activity->clazz, methodID, fFPS );
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsNativeActivity.cpp 416 jmethodID methodID = jni->GetMethodID( clazz, "showUI", "()V" );
417 jni->CallVoidMethod( app_->activity->clazz, methodID );
430 jmethodID methodID = jni->GetMethodID( clazz, "updateFPS", "(F)V" );
431 jni->CallVoidMethod( app_->activity->clazz, methodID, fps );
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod002Test.java 83 // Get methodID
96 long methodID = reply.getNextValueAsMethodID();
100 logWriter.println(" methodID=" + methodID + " name=" + name
103 targetMethodID = methodID;
InvokeMethodTest.java 90 // Get methodID
102 long methodID = reply.getNextValueAsMethodID();
106 logWriter.println(" methodID=" + methodID + " name=" + name
109 targetMethodID = methodID;
260 logWriter.println("## FAILURE: Can not get methodID!");
261 fail("Can not get methodID!");
398 logWriter.println("## FAILURE: Can not get methodID!");
399 fail("Can not get methodID!");
NewInstanceTest.java 86 // Get methodID
98 long methodID = reply.getNextValueAsMethodID();
102 logWriter.println(" methodID=" + methodID + "; name=" + name
105 targetMethodID = methodID;
297 // Get methodID
309 long methodID = reply.getNextValueAsMethodID();
313 logWriter.println(" methodID=" + methodID + "; name=" + name
316 targetMethodID = methodID;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
JDWPEventModifierTestCase.java 61 long methodID = getMethodID(typeID, breakpoint.methodName);
64 builder.setLocationOnly(new Location(typeTag, typeID, methodID,
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 123 final int methodID = method.getID ();
125 final boolean [] mcoverage = ccoverage == null ? null : ccoverage [methodID];
127 final MethodDescriptor methoddesc = methoddescs [methodID];
SrcFileItem.java 151 final int methodID = method.getID ();
153 final boolean [] mcoverage = ccoverage == null ? null : ccoverage [methodID];
155 final MethodDescriptor methoddesc = methoddescs [methodID];
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 221 // [methodid][blocksinmethod]
230 final int methodID = method.getID();
237 $assert.ASSERT(ccoverage.length > methodID, "index bounds");
238 $assert.ASSERT(ccoverage[methodID] != null, "null: coverage");
239 $assert.ASSERT(ccoverage[methodID].length > 0, "empty array");
241 covered = ccoverage[methodID][0];
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 197 long methodID = reply.getNextValueAsMethodID();
202 return methodID;
213 * @param methodID -
217 protected ReplyPacket getLineTable(long classID, long methodID) {
222 lineTableCommand.setNextValueAsMethodID(methodID);
233 * @param methodID method id
236 protected String getMethodName(long classID, long methodID) {
249 if (mid == methodID) {
  /frameworks/base/core/jni/
android_media_AudioSystem.cpp 664 jmethodID methodID;
667 methodID = gAudioPortConfigCstor;
672 methodID = gAudioDevicePortConfigCstor;
676 methodID = gAudioMixPortConfigCstor;
692 *jAudioPortConfig = env->NewObject(clazz, methodID,
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 

Completed in 575 milliseconds

1 2