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

/dalvik/vm/oo/
H A DObject.h59 * The "Bridge" form is a super-set of the "Native" form; in many places
142 CLASS_IDX = 1, /* loaded, DEX idx in super or ifaces */
180 * A magic value for refOffsets. Ignore the bits and walk the super
435 ClassObject* super; member in struct:ClassObject
460 * our class either replace those from the super or are appended.
H A DClass.c1608 if (clazz->super == NULL) {
1708 * newClass->super is not traversed or freed by dvmFreeClassInnards, so
1712 newClass->super = (ClassObject*) pClassDef->superclassIdx;
2388 if (clazz->super != NULL) {
2389 clazz->refOffsets = clazz->super->refOffsets;
2433 * If clazz->status is CLASS_IDX, then clazz->super and interfaces[] are
2497 assert(sizeof(superclassIdx) == sizeof(clazz->super));
2498 superclassIdx = (u4) clazz->super;
2499 clazz->super = NULL;
2506 ClassObject* super local
4658 const ClassObject* super; local
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.c1123 * If we're using invoke-super(method), make sure that the executing
1128 ClassObject* super = meth->clazz->super; local
1129 if (super == NULL || resMethod->methodIndex > super->vtableCount) {
1131 LOG_VFY("VFY: invalid invoke-super from %s.%s to super %s.%s %s\n",
1133 (super == NULL) ? "-" : super->descriptor,
2199 while (clazz->super !
[all...]

Completed in 105 milliseconds