Home
last modified time | relevance | path

Searched refs:methodName (Results 1 – 20 of 20) sorted by relevance

/dalvik/vm/oo/
DObject.cpp208 static inline int compareMethodHelper(Method* method, const char* methodName, in compareMethodHelper() argument
214 if (strcmp(methodName, method->name) != 0) { in compareMethodHelper()
469 const char* methodName, const char* descriptor) in dvmFindVirtualMethodByDescriptor() argument
472 methodName, descriptor); in dvmFindVirtualMethodByDescriptor()
490 const char* methodName) in dvmFindVirtualMethodByName() argument
497 if (strcmp(methods[i].name, methodName) == 0) in dvmFindVirtualMethodByName()
511 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName, in dvmFindVirtualMethod() argument
514 return findMethodInListByProto(clazz, METHOD_VIRTUAL, false, methodName, in dvmFindVirtualMethod()
525 const char* methodName, const char* descriptor) in dvmFindVirtualMethodHierByDescriptor() argument
528 methodName, descriptor); in dvmFindVirtualMethodHierByDescriptor()
[all …]
DObject.h590 const char* methodName, const char* signature);
592 const char* methodName, const char* signature);
594 const char* methodName);
595 Method* dvmFindDirectMethod(const ClassObject* clazz, const char* methodName,
597 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
605 const char* methodName, const char* descriptor);
607 const char* methodName, const char* signature);
609 const char* methodName, const DexProto* proto);
611 const char* methodName, const DexProto* proto);
612 Method* dvmFindMethodHier(const ClassObject* clazz, const char* methodName,
[all …]
DResolve.cpp334 const char* methodName = in dvmResolveInterfaceMethod() local
340 LOGVV("+++ looking for '%s' in resClass='%s'", methodName, resClass->descriptor); in dvmResolveInterfaceMethod()
341 resMethod = dvmFindInterfaceMethodHier(resClass, methodName, &proto); in dvmResolveInterfaceMethod()
346 msg += methodName; in dvmResolveInterfaceMethod()
/dalvik/tools/dmtracedump/
DTraceDump.c164 const char* methodName; member
301 const char *className, const char *methodName, in initMethodEntry() argument
307 method->methodName = methodName; in initMethodEntry()
347 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareElapsedExclusive()
356 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedExclusive()
386 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareElapsedInclusive()
395 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedInclusive()
427 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareTimedMethod()
436 result = strcmp(methodA->methodName, methodB->methodName); in compareTimedMethod()
511 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareMethodNames()
[all …]
DCreateTestTrace.c69 char *methodName; member
228 records[nextRecord].methodName = NULL; in parseInputFile()
241 records[nextRecord].methodName = strndup(save_cp, len); in parseInputFile()
401 if (pRecord->className == NULL || pRecord->methodName == NULL) { in writeKeyMethods()
407 pRecord->methodName); in writeKeyMethods()
411 pRecord->methodName, pRecord->signature); in writeKeyMethods()
/dalvik/vm/native/
Ddalvik_system_VMDebug.cpp603 char* methodName = strchr(classAndMethodDesc, '.'); in Dalvik_dalvik_system_VMDebug_cacheRegisterMap() local
604 if (methodName == NULL) { in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
608 *methodName++ = '\0'; in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
610 char* methodDescr = strchr(methodName, ':'); in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
634 if (methodName[0] == '<') { in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
639 method = dvmFindDirectMethodByDescriptor(clazz, methodName, in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
645 method = dvmFindVirtualMethodHierByDescriptor(clazz, methodName, in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
648 method = dvmFindDirectMethodHierByDescriptor(clazz, methodName, in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
661 classAndMethodDesc, methodName, methodDescr); in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
664 classAndMethodDesc, methodName, methodDescr); in Dalvik_dalvik_system_VMDebug_cacheRegisterMap()
[all …]
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DMethodRef.java27 String methodName) { in MethodRef() argument
31 mMethodName = methodName; in MethodRef()
/dalvik/dexlist/
DDexList.cpp100 const char* methodName; in dumpMethod() local
108 methodName = dexStringById(pDexFile, pMethodId->nameIdx); in dumpMethod()
137 strcmp(gParms.methodToFind, methodName) != 0)) in dumpMethod()
144 className, methodName, desc, in dumpMethod()
/dalvik/vm/
DInlineNative.h28 const char* methodName, const char* methodSignature);
51 const char* methodName; member
DInlineNative.cpp811 const char* methodName, const char* methodSignature) in dvmFindInlinableMethod() argument
828 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName, in dvmFindInlinableMethod()
831 method = dvmFindVirtualMethodByDescriptor(clazz, methodName, in dvmFindInlinableMethod()
836 clazz->descriptor, methodName, methodSignature); in dvmFindInlinableMethod()
877 gDvmInlineOpsTable[opIndex].methodName, in dvmResolveInlineNative()
DNative.cpp558 const char* methodName, int* pLen) in createJniNameString() argument
563 *pLen = 4 + descriptorLength + strlen(methodName); in createJniNameString()
573 sprintf(result, "Java/%s%s", classDescriptor + 1, methodName); in createJniNameString()
DJni.cpp697 static void dumpCandidateMethods(ClassObject* clazz, const char* methodName, const char* signature)… in dumpCandidateMethods() argument
699 ALOGE("Requested: %s.%s:%s", clazz->descriptor, methodName, signature); in dumpCandidateMethods()
700 dumpMethods(clazz->virtualMethods, clazz->virtualMethodCount, methodName); in dumpCandidateMethods()
701 dumpMethods(clazz->directMethods, clazz->directMethodCount, methodName); in dumpCandidateMethods()
707 static bool dvmRegisterJNIMethod(ClassObject* clazz, const char* methodName, in dvmRegisterJNIMethod() argument
720 ALOGV("fast JNI method %s.%s:%s detected", clazz->descriptor, methodName, signature); in dvmRegisterJNIMethod()
723 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName, signature); in dvmRegisterJNIMethod()
725 method = dvmFindVirtualMethodByDescriptor(clazz, methodName, signature); in dvmRegisterJNIMethod()
728 dumpCandidateMethods(clazz, methodName, signature); in dvmRegisterJNIMethod()
733 ALOGW("Unable to register: not native: %s.%s:%s", clazz->descriptor, methodName, signature); in dvmRegisterJNIMethod()
[all …]
DException.cpp1013 StringObject* methodName = dvmCreateStringFromCstr(meth->name); in dvmFillStackTraceElements() local
1026 ste, &unused, className, methodName, fileName, lineNumber); in dvmFillStackTraceElements()
1030 dvmReleaseTrackedAlloc((Object*) methodName, NULL); in dvmFillStackTraceElements()
DCheckJni.cpp653 std::string methodName(dvmHumanReadableMethod(method, false)); in check() local
654 ALOGI("JNI: %s -> %s(%s)", methodName.c_str(), mFunctionName, msg.c_str()); in check()
655 mIndent = methodName.size() + 1; in check()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java792 String methodName = fqName.substring(lastDot + 1); in dumpMethod() local
801 methodName = methodName.substring(0, methodName.length() - 1); in dumpMethod()
815 if ((wildcard && methName.startsWith(methodName)) || in dumpMethod()
816 (!wildcard && methName.equals(methodName))) { in dumpMethod()
/dalvik/vm/analysis/
DOptimize.cpp77 ops[i].methodName, ops[i].methodSignature); in dvmCreateInlineSubsTable()
84 ops[i].classDescriptor, ops[i].methodName, in dvmCreateInlineSubsTable()
1009 const char* methodName = in dvmOptResolveInterfaceMethod() local
1015 methodName, methodSig, resClass->descriptor); in dvmOptResolveInterfaceMethod()
1016 resMethod = dvmFindInterfaceMethodHier(resClass, methodName, &proto); in dvmOptResolveInterfaceMethod()
DCodeVerify.cpp1129 const char* methodName = dexStringById(pDexFile, pMethodId->nameIdx); in verifyInvocationArgs() local
1140 dotMissingClass.c_str(), methodName, in verifyInvocationArgs()
1146 classDescriptor, methodName, methodDesc); in verifyInvocationArgs()
/dalvik/hit/src/com/android/hit/
DHprofParser.java209 String methodName = mStrings.get(readId()); in loadStackFrame() local
215 StackFrame frame = new StackFrame(id, methodName, methodSignature, in loadStackFrame()
/dalvik/vm/interp/
DStack.cpp1228 std::string methodName(dvmHumanReadableMethod(method, false)); in dumpFrames() local
1231 methodName.c_str()); in dumpFrames()
1234 methodName.c_str(), dvmGetMethodSourceFile(method), in dumpFrames()
DInterp.cpp1365 const char* methodName = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in methodNameFromIndex() local
1373 result += dotName + "." + methodName + ":" + desc; in methodNameFromIndex()
1378 return dotName + "." + methodName; in methodNameFromIndex()