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

/dalvik/vm/oo/
H A DObject.cpp208 static inline int compareMethodHelper(Method* method, const char* methodName, argument
214 if (strcmp(methodName, method->name) != 0) {
469 const char* methodName, const char* descriptor)
472 methodName, descriptor);
490 const char* methodName)
497 if (strcmp(methods[i].name, methodName) == 0)
511 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName, argument
514 return findMethodInListByProto(clazz, METHOD_VIRTUAL, false, methodName,
525 const char* methodName, const char* descriptor)
528 methodName, descripto
468 dvmFindVirtualMethodByDescriptor(const ClassObject* clazz, const char* methodName, const char* descriptor) argument
489 dvmFindVirtualMethodByName(const ClassObject* clazz, const char* methodName) argument
524 dvmFindVirtualMethodHierByDescriptor(const ClassObject* clazz, const char* methodName, const char* descriptor) argument
537 dvmFindVirtualMethodHier(const ClassObject* clazz, const char* methodName, const DexProto* proto) argument
549 dvmFindInterfaceMethodHierByDescriptor(const ClassObject* iface, const char* methodName, const char* descriptor) argument
572 dvmFindInterfaceMethodHier(const ClassObject* iface, const char* methodName, const DexProto* proto) argument
594 dvmFindDirectMethodByDescriptor(const ClassObject* clazz, const char* methodName, const char* descriptor) argument
608 dvmFindDirectMethodHierByDescriptor(const ClassObject* clazz, const char* methodName, const char* descriptor) argument
620 dvmFindDirectMethod(const ClassObject* clazz, const char* methodName, const DexProto* proto) argument
633 dvmFindDirectMethodHier(const ClassObject* clazz, const char* methodName, const DexProto* proto) argument
653 dvmFindMethodHier(const ClassObject* clazz, const char* methodName, const DexProto* proto) argument
[all...]
H A 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...]
H A DResolve.cpp334 const char* methodName = local
340 LOGVV("+++ looking for '%s' in resClass='%s'", methodName, resClass->descriptor);
341 resMethod = dvmFindInterfaceMethodHier(resClass, methodName, &proto);
346 msg += methodName;
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DMethodRef.java27 String methodName) {
31 mMethodName = methodName;
26 MethodRef(String declClass, String[] argTypes, String returnType, String methodName) argument
/dalvik/tools/dmtracedump/
H A DTraceDump.c164 const char* methodName; member in struct:MethodEntry
301 const char *className, const char *methodName,
307 method->methodName = methodName;
347 if (methodA->methodName == NULL || methodB->methodName == NULL) {
356 result = strcmp(methodA->methodName, methodB->methodName);
386 if (methodA->methodName == NULL || methodB->methodName
300 initMethodEntry(MethodEntry *method, unsigned int methodId, const char *className, const char *methodName, const char *signature, const char* fileName, const char* lineNumStr) argument
1412 char *className, *methodName, *signature; local
1579 char *className, *methodName, *signature; local
1730 char *className, *methodName, *signature; local
1964 char *className, *methodName, *signature; local
2196 char *className, *methodName, *signature; local
2603 char* methodName; local
2702 char* methodName; local
[all...]
H A DCreateTestTrace.c69 char *methodName; member in struct:dataRecord
228 records[nextRecord].methodName = NULL;
241 records[nextRecord].methodName = strndup(save_cp, len);
401 if (pRecord->className == NULL || pRecord->methodName == NULL) {
407 pRecord->methodName);
411 pRecord->methodName, pRecord->signature);
/dalvik/vm/native/
H A Ddalvik_system_VMDebug.cpp603 char* methodName = strchr(classAndMethodDesc, '.'); local
604 if (methodName == NULL) {
608 *methodName++ = '\0';
610 char* methodDescr = strchr(methodName, ':');
617 //ALOGD("GOT: %s %s %s", classAndMethodDesc, methodName, methodDescr);
634 if (methodName[0] == '<') {
639 method = dvmFindDirectMethodByDescriptor(clazz, methodName,
645 method = dvmFindVirtualMethodHierByDescriptor(clazz, methodName,
648 method = dvmFindDirectMethodHierByDescriptor(clazz, methodName,
661 classAndMethodDesc, methodName, methodDesc
[all...]
/dalvik/dexlist/
H A DDexList.cpp100 const char* methodName; local
108 methodName = dexStringById(pDexFile, pMethodId->nameIdx);
137 strcmp(gParms.methodToFind, methodName) != 0))
144 className, methodName, desc,
/dalvik/vm/
H A DInlineNative.h28 const char* methodName, const char* methodSignature);
51 const char* methodName; member in struct:InlineOperation
H A DInlineNative.cpp811 const char* methodName, const char* methodSignature)
828 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName,
831 method = dvmFindVirtualMethodByDescriptor(clazz, methodName,
836 clazz->descriptor, methodName, methodSignature);
877 gDvmInlineOpsTable[opIndex].methodName,
810 dvmFindInlinableMethod(const char* classDescriptor, const char* methodName, const char* methodSignature) argument
H A DNative.cpp558 const char* methodName, int* pLen)
563 *pLen = 4 + descriptorLength + strlen(methodName);
573 sprintf(result, "Java/%s%s", classDescriptor + 1, methodName);
557 createJniNameString(const char* classDescriptor, const char* methodName, int* pLen) argument
H A DJni.cpp727 static void dumpCandidateMethods(ClassObject* clazz, const char* methodName, const char* signature) { argument
729 ALOGE("Requested: %s.%s:%s", clazz->descriptor, methodName, signature);
730 dumpMethods(clazz->virtualMethods, clazz->virtualMethodCount, methodName);
731 dumpMethods(clazz->directMethods, clazz->directMethodCount, methodName);
737 static bool dvmRegisterJNIMethod(ClassObject* clazz, const char* methodName, argument
750 ALOGV("fast JNI method %s.%s:%s detected", clazz->descriptor, methodName, signature);
753 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName, signature);
755 method = dvmFindVirtualMethodByDescriptor(clazz, methodName, signature);
758 dumpCandidateMethods(clazz, methodName, signature);
763 ALOGW("Unable to register: not native: %s.%s:%s", clazz->descriptor, methodName, signatur
[all...]
H A DException.cpp1013 StringObject* methodName = dvmCreateStringFromCstr(meth->name); local
1020 * public StackTraceElement(String declaringClass, String methodName,
1026 ste, &unused, className, methodName, fileName, lineNumber); local
1030 dvmReleaseTrackedAlloc((Object*) methodName, NULL);
H A DCheckJni.cpp654 std::string methodName(dvmHumanReadableMethod(method, false));
655 ALOGI("JNI: %s -> %s(%s)", methodName.c_str(), mFunctionName, msg.c_str());
656 mIndent = methodName.size() + 1;
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java792 String methodName = fqName.substring(lastDot + 1);
801 methodName = methodName.substring(0, methodName.length() - 1);
815 if ((wildcard && methName.startsWith(methodName)) ||
816 (!wildcard && methName.equals(methodName))) {
/dalvik/vm/analysis/
H A DOptimize.cpp77 ops[i].methodName, ops[i].methodSignature);
84 ops[i].classDescriptor, ops[i].methodName,
1009 const char* methodName = local
1015 methodName, methodSig, resClass->descriptor);
1016 resMethod = dvmFindInterfaceMethodHier(resClass, methodName, &proto);
H A DCodeVerify.cpp1129 const char* methodName = dexStringById(pDexFile, pMethodId->nameIdx); local
1140 dotMissingClass.c_str(), methodName,
1146 classDescriptor, methodName, methodDesc);
/dalvik/hit/src/com/android/hit/
H A DHprofParser.java209 String methodName = mStrings.get(readId());
215 StackFrame frame = new StackFrame(id, methodName, methodSignature,
/dalvik/vm/interp/
H A DStack.cpp1228 std::string methodName(dvmHumanReadableMethod(method, false));
1231 methodName.c_str());
1234 methodName.c_str(), dvmGetMethodSourceFile(method),
H A DInterp.cpp1363 const char* methodName = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); local
1371 result += dotName + "." + methodName + ":" + desc;
1376 return dotName + "." + methodName;

Completed in 545 milliseconds