Home | History | Annotate | Download | only in hprof

Lines Matching full:clazz

40 static u4 computeClassHash(const ClassObject *clazz)
46 cp = clazz->descriptor;
47 hash = (u4)clazz->classLoader;
73 hprof_class_object_id hprofLookupClassId(const ClassObject *clazz)
77 if (clazz == NULL) {
89 val = dvmHashTableLookup(gClassHashTable, computeClassHash(clazz),
90 (void *)clazz, classCmp, true);
100 getPrettyClassNameId(clazz->descriptor);
102 return (hprof_class_object_id)clazz;
119 const ClassObject *clazz;
121 clazz = (const ClassObject *)dvmHashIterData(&iter);
122 assert(clazz != NULL);
133 hprofAddU4ToRecord(rec, clazz->serialNumber);
134 hprofAddIdToRecord(rec, (hprof_class_object_id)clazz);
136 hprofAddIdToRecord(rec, getPrettyClassNameId(clazz->descriptor));