Searched defs:super (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/oo/
H A DObject.h46 * The "Bridge" form is a super-set of the "Native" form; in many places
132 CLASS_IDX = 1, /* loaded, DEX idx in super or ifaces */
145 * A magic value for refOffsets. Ignore the bits and walk the super
396 ClassObject* super; member in struct:ClassObject
421 * our class either replace those from the super or are appended.
H A DClass.cpp352 newClass->super = NULL;
1708 assert(clazz == gDvm.classJavaLangObject || clazz->super != NULL);
1788 * newClass->super is not traversed or freed by dvmFreeClassInnards, so
1792 newClass->super = (ClassObject*) pClassDef->superclassIdx;
2451 if (clazz->super != NULL) {
2452 clazz->refOffsets = clazz->super->refOffsets;
2496 * If clazz->status is CLASS_IDX, then clazz->super and interfaces[] are
2562 assert(sizeof(superclassIdx) == sizeof(clazz->super));
2563 superclassIdx = (u4) clazz->super;
2564 clazz->super
2571 ClassObject* super = dvmResolveClass(clazz, superclassIdx, false); local
4661 const ClassObject* super; local
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.cpp1177 * If we're using invoke-super(method), make sure that the executing
1182 ClassObject* super = meth->clazz->super; local
1183 if (super == NULL || resMethod->methodIndex > super->vtableCount) {
1185 LOG_VFY("VFY: invalid invoke-super from %s.%s to super %s.%s %s",
1187 (super == NULL) ? "-" : super->descriptor,
2296 while (clazz->super !
[all...]

Completed in 67 milliseconds