Searched defs:iftable (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/oo/
H A DObject.h145 * Used for iftable in ClassObject.
360 * Interface table (iftable), one entry per interface supported by
374 InterfaceEntry* iftable; member in struct:ClassObject
377 * The interface vtable indices for iftable get stored here. By placing
430 * of the method in "iftable[n]->methodIndexArray".
H A DClass.c1939 NULL_AND_LINEAR_FREE(clazz->iftable);
2795 * Create and populate "iftable".
2835 assert(clazz->iftable == NULL);
2844 clazz->iftable = (InterfaceEntry*) dvmLinearAlloc(clazz->classLoader,
2847 memset(clazz->iftable, 0x00, sizeof(InterfaceEntry) * ifCount);
2849 memcpy(clazz->iftable, clazz->super->iftable,
2876 clazz->iftable[idx++].clazz = interf;
2880 clazz->iftable[idx++].clazz = interf->iftable[
3938 const InterfaceEntry* iftable = &clazz->iftable[i]; local
[all...]

Completed in 107 milliseconds