Searched defs:methodName (Results 1 - 16 of 16) sorted by relevance

/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/vm/oo/
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;
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...]
/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.cpp560 const char* methodName, int* pLen)
565 *pLen = 4 + descriptorLength + strlen(methodName);
575 sprintf(result, "Java/%s%s", classDescriptor + 1, methodName);
559 createJniNameString(const char* classDescriptor, const char* methodName, int* pLen) argument
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 DJni.cpp694 static void dumpCandidateMethods(ClassObject* clazz, const char* methodName, const char* signature) { argument
696 ALOGE("Requested: %s.%s:%s", clazz->descriptor, methodName, signature);
697 dumpMethods(clazz->virtualMethods, clazz->virtualMethodCount, methodName);
698 dumpMethods(clazz->directMethods, clazz->directMethodCount, methodName);
709 static bool dvmRegisterJNIMethod(ClassObject* clazz, const char* methodName, argument
722 ALOGV("fast JNI method %s.%s:%s detected", clazz->descriptor, methodName, signature);
725 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName, signature);
727 method = dvmFindVirtualMethodByDescriptor(clazz, methodName, signature);
730 dumpCandidateMethods(clazz, methodName, signature);
731 throwNoSuchMethodError(clazz, methodName, signatur
[all...]
/dalvik/tools/dmtracedump/
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);
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...]
/dalvik/vm/analysis/
H A DOptimize.cpp77 ops[i].methodName, ops[i].methodSignature);
84 ops[i].classDescriptor, ops[i].methodName,
1010 const char* methodName = local
1016 methodName, methodSig, resClass->descriptor);
1017 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/vm/native/
H A Ddalvik_system_VMDebug.cpp629 char* methodName = strchr(classAndMethodDesc, '.'); local
630 if (methodName == NULL) {
634 *methodName++ = '\0';
636 char* methodDescr = strchr(methodName, ':');
643 //ALOGD("GOT: %s %s %s", classAndMethodDesc, methodName, methodDescr);
660 if (methodName[0] == '<') {
665 method = dvmFindDirectMethodByDescriptor(clazz, methodName,
671 method = dvmFindVirtualMethodHierByDescriptor(clazz, methodName,
674 method = dvmFindDirectMethodHierByDescriptor(clazz, methodName,
687 classAndMethodDesc, methodName, methodDesc
[all...]
H A Ddalvik_system_VMRuntime.cpp359 const char* methodName = dexStringById(pDexFile, pMethodId->nameIdx); local
364 method = dvmFindDirectMethod(clazz, methodName, &proto);
366 method = dvmFindDirectMethodHier(clazz, methodName, &proto);
368 method = dvmFindVirtualMethodHier(clazz, methodName, &proto);
374 // clazz->descriptor, methodName);
/dalvik/vm/interp/
H A DInterp.cpp1363 const char* methodName = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); local
1371 result += dotName + "." + methodName + ":" + desc;
1376 return dotName + "." + methodName;

Completed in 216 milliseconds