Lines Matching refs:method
41 const Method *method;
47 method = stackFrameEntry->frame.method;
48 if (method == NULL) {
52 /* Make sure the method name, descriptor, and source file are in
53 * the string table, and that the method class is in the class
58 if (method->name) {
59 hprofLookupStringId(method->name);
66 descriptor = dexProtoGetMethodDescriptor(&method->prototype, &cache);
70 const char* sourceFile = dvmGetMethodSourceFile(method);
75 if (method->clazz) {
76 hprofLookupClassId(method->clazz);
190 const Method *method;
201 method = stackFrameEntry->frame.method;
203 sourceFile = dvmGetMethodSourceFile(method);
208 lineNum = dvmLineNumFromPC(method, pc);
210 clazz = (ClassObject *) hprofLookupClassId(method->clazz);
215 * ID: ID for the method name
216 * ID: ID for the method descriptor
228 descriptor = dexProtoGetMethodDescriptor(&method->prototype, &cache);
231 hprofAddIdToRecord(rec, hprofLookupStringId(method->name));