HomeSort by relevance Sort by last modified time
    Searched refs:DexMethod (Results 1 - 11 of 11) sorted by null

  /cts/tools/dex-tools/src/dex/structure/
DexClass.java 52 List<DexMethod> getMethods();
DexMethod.java 22 * {@code DexMethod} represents a method.
24 public interface DexMethod extends WithModifiers, DexAnnotatedElement,
  /dalvik/libdex/
DexClass.h 42 struct DexMethod {
55 DexMethod* directMethods;
56 DexMethod* virtualMethods;
91 DexMethod* pMethod, u4* lastIndex);
106 * Get the DexCode for a DexMethod. Returns NULL if the class is native
110 const DexMethod* pDexMethod)
152 DEX_INLINE void dexReadClassDataMethod(const u1** pData, DexMethod* pMethod,
DexClass.cpp 85 DexMethod* pMethod, u4* lastIndex) {
121 (header.directMethodsSize * sizeof(DexMethod)) +
122 (header.virtualMethodsSize * sizeof(DexMethod));
150 result->directMethods = (DexMethod*) ptr;
151 ptr += header.directMethodsSize * sizeof(DexMethod);
157 result->virtualMethods = (DexMethod*) ptr;
DexSwapVerify.cpp     [all...]
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 23 import dex.structure.DexMethod;
118 for (DexMethod method : dexClass.getMethods()) {
DexClassImpl.java 35 import dex.structure.DexMethod;
52 private List<DexMethod> methods;
276 public synchronized List<DexMethod> getMethods() {
278 methods = new ArrayList<DexMethod>();
287 private List<DexMethod> getDexMethods(EncodedMethod[] methods) {
288 List<DexMethod> dexMethods = new ArrayList<DexMethod>(methods.length);
DexMethodImpl.java 34 import dex.structure.DexMethod;
37 /* package */final class DexMethodImpl implements DexMethod {
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 33 import dex.structure.DexMethod;
129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) {
133 for (DexMethod method : clazz.getMethods()) {
DexFileReaderTests.java 40 import dex.structure.DexMethod;
99 DexMethod method = getMethod(clazz, "publicStringMethodInt", "I");
330 DexMethod method = getMethod(A, "m", "I");
  /dalvik/dexdump/
DexDump.cpp 626 const DexMethod *pDexMethod)
651 const DexMethod *pDexMethod)
    [all...]

Completed in 290 milliseconds