Lines Matching full:meth
343 static MethodId methodToMethodId(const Method* meth)
345 return (MethodId)(u4) meth;
1188 Method* meth;
1190 meth = methodIdToMethod(refTypeId, id);
1191 return meth->name;
1247 Method* meth;
1260 meth = &clazz->directMethods[i];
1262 expandBufAddMethodId(pReply, methodToMethodId(meth));
1263 expandBufAddUtf8String(pReply, (const u1*) meth->name);
1266 (const u1*) dexProtoGetMethodDescriptor(&meth->prototype,
1271 expandBufAdd4BE(pReply, meth->accessFlags);
1274 meth = &clazz->virtualMethods[i];
1276 expandBufAddMethodId(pReply, methodToMethodId(meth));
1277 expandBufAddUtf8String(pReply, (const u1*) meth->name);
1280 (const u1*) dexProtoGetMethodDescriptor(&meth->prototype,
1285 expandBufAdd4BE(pReply, meth->accessFlags);
2864 const Method* meth;
2884 meth = pReq->method;
2886 meth = dvmGetVirtualizedMethod(pReq->clazz, pReq->method);
2888 assert(meth != NULL);
2893 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
2895 pReq->method, meth, meth->clazz->descriptor, meth->name, desc);
2899 dvmCallMethodA(self, meth, pReq->obj, false, &pReq->resultValue,
2902 pReq->resultTag = resultTagFromSignature(meth);