Home | History | Annotate | Download | only in oo

Lines Matching refs:methodName

208 static inline int compareMethodHelper(Method* method, const char* methodName,
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,
514 return findMethodInListByProto(clazz, METHOD_VIRTUAL, false, methodName,
525 const char* methodName, const char* descriptor)
528 methodName, descriptor);
538 const char* methodName, const DexProto* proto)
540 return findMethodInListByProto(clazz, METHOD_VIRTUAL, true, methodName,
550 const char* methodName, const char* descriptor)
553 methodName, descriptor);
564 const char* methodName, const char* descriptor)
567 methodName, descriptor);
575 Method* dvmFindDirectMethod(const ClassObject* clazz, const char* methodName,
578 return findMethodInListByProto(clazz, METHOD_DIRECT, false, methodName,
589 const char* methodName, const DexProto* proto)
591 return findMethodInListByProto(clazz, METHOD_DIRECT, true, methodName,
608 Method* dvmFindMethodHier(const ClassObject* clazz, const char* methodName,
611 return findMethodInListByProto(clazz, METHOD_UNKNOWN, true, methodName,