OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iftable
(Results
1 - 8
of
8
) sorted by null
/dalvik/vm/oo/
Object.cpp
140
ClassObject* iface = clazz->
iftable
[i].clazz;
191
ClassObject* iface = clazz->
iftable
[i].clazz;
558
resMethod = dvmFindVirtualMethodByDescriptor(iface->
iftable
[i].clazz,
580
resMethod = dvmFindVirtualMethod(iface->
iftable
[i].clazz,
695
if (clazz->
iftable
[i].clazz == meth->clazz)
704
methodIndex = clazz->
iftable
[i].methodIndexArray[meth->methodIndex];
TypeCheck.cpp
179
* in "
iftable
", so we can just do a linear scan through that.
182
if (clazz->
iftable
[i].clazz == interface)
Array.cpp
403
* copy of "interfaces" and "
iftable
" somewhere near the start and
430
newClass->
iftable
= (InterfaceEntry*) dvmLinearAlloc(newClass->classLoader,
432
memset(newClass->
iftable
, 0, sizeof(InterfaceEntry) * 2);
433
newClass->
iftable
[0].clazz = newClass->interfaces[0];
434
newClass->
iftable
[1].clazz = newClass->interfaces[1];
435
dvmLinearReadOnly(newClass->classLoader, newClass->
iftable
);
Class.cpp
4108
const InterfaceEntry*
iftable
= &clazz->
iftable
[i];
local
[
all
...]
Object.h
181
* 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".
/dalvik/vm/interp/
Interp.cpp
[
all
...]
/dalvik/vm/reflect/
Proxy.cpp
267
ClassObject* iclass = clazz->
iftable
[j].clazz;
304
ClassObject* iclass = clazz->
iftable
[j].clazz;
[
all
...]
/dalvik/vm/
Debugger.cpp
[
all
...]
Completed in 77 milliseconds