Searched defs:directMethods (Results 1 - 4 of 4) sorted by relevance

/dalvik/libdex/
H A DDexClass.h55 DexMethod* directMethods; member in struct:DexClassData
/dalvik/dx/src/com/android/dx/dex/file/
H A DClassDataItem.java57 private final ArrayList<EncodedMethod> directMethods; field in class:ClassDataItem
89 this.directMethods = new ArrayList<EncodedMethod>(20);
114 && directMethods.isEmpty() && virtualMethods.isEmpty();
160 directMethods.add(method);
184 int sz = directMethods.size() + virtualMethods.size();
187 result.addAll(directMethods);
214 sz = directMethods.size();
217 directMethods.get(i).debugPrint(pw, verbose);
244 if (!directMethods.isEmpty()) {
245 Collections.sort(directMethods);
[all...]
/dalvik/vm/oo/
H A DObject.h407 Method* directMethods; member in struct:ClassObject
H A DClass.c1810 newClass->directMethods = (Method*) dvmLinearAlloc(classLoader,
1814 loadMethodFromDex(newClass, &method, &newClass->directMethods[i]);
1818 newClass->directMethods[i].registerMap = pMap;
1820 assert((newClass->directMethods[i].registersSize+7) / 8 ==
1821 newClass->directMethods[i].registerMap->regWidth);
1825 dvmLinearReadOnly(classLoader, newClass->directMethods);
1967 if (clazz->directMethods != NULL) {
1968 Method *directMethods = clazz->directMethods; local
1970 clazz->directMethods
[all...]

Completed in 537 milliseconds