Home | History | Annotate | Download | only in analysis

Lines Matching full:meth

29 bool dvmWantVerboseVerification(const Method* meth)
36 return (strcmp(meth->clazz->descriptor, cd) == 0 &&
37 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0);
45 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
59 if (meth != NULL) {
60 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
62 meth->clazz->descriptor, meth->name, desc);
75 const Method* meth)
82 std::string dotFromClass = dvmHumanReadableDescriptor(meth->clazz->descriptor);
84 dotMissingClass.c_str(), dotFromClass.c_str(), meth->name);
92 bool dvmGetBranchOffset(const Method* meth, const InsnFlags* insnFlags,
95 const u2* insns = meth->insns + curOffset;