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

/dalvik/vm/oo/
H A DObject.h181 * Used for iftable in ClassObject.
427 * Interface table (iftable), one entry per interface supported by
441 InterfaceEntry* iftable; member in struct:ClassObject
444 * The interface vtable indices for iftable get stored here. By placing
500 * of the method in "iftable[n]->methodIndexArray".
H A DClass.cpp2080 NULL_AND_LINEAR_FREE(clazz->iftable);
3002 * Create and populate "iftable".
3044 assert(clazz->iftable == NULL);
3052 clazz->iftable = (InterfaceEntry*) dvmLinearAlloc(clazz->classLoader,
3055 memset(clazz->iftable, 0x00, sizeof(InterfaceEntry) * ifCount);
3057 memcpy(clazz->iftable, clazz->super->iftable,
3080 clazz->iftable[idx++].clazz = interf;
3087 cand = interf->iftable[j].clazz;
3098 if (clazz->iftable[
4113 const InterfaceEntry* iftable = &clazz->iftable[i]; local
[all...]

Completed in 208 milliseconds