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

/dalvik/vm/oo/
H A DObject.h216 * Used for iftable in ClassObject.
466 * Interface table (iftable), one entry per interface supported by
480 InterfaceEntry* iftable; member in struct:ClassObject
483 * The interface vtable indices for iftable get stored here. By placing
539 * of the method in "iftable[n]->methodIndexArray".
H A DClass.c1999 NULL_AND_LINEAR_FREE(clazz->iftable);
2934 * Create and populate "iftable".
2974 assert(clazz->iftable == NULL);
2983 clazz->iftable = (InterfaceEntry*) dvmLinearAlloc(clazz->classLoader,
2986 memset(clazz->iftable, 0x00, sizeof(InterfaceEntry) * ifCount);
2988 memcpy(clazz->iftable, clazz->super->iftable,
3015 clazz->iftable[idx++].clazz = interf;
3019 clazz->iftable[idx++].clazz = interf->iftable[
4122 const InterfaceEntry* iftable = &clazz->iftable[i]; local
[all...]

Completed in 64 milliseconds