Home
last modified time | relevance | path

Searched refs:MethodId (Results 1 – 11 of 11) sorted by relevance

/dalvik/dx/src/com/android/dx/io/
DMethodId.java21 public final class MethodId implements Comparable<MethodId> { class
27 public MethodId(DexBuffer buffer, int declaringClassIndex, int protoIndex, int nameIndex) { in MethodId() method in MethodId
46 public int compareTo(MethodId other) { in compareTo()
DDexBuffer.java108 private final List<MethodId> methodIds = new AbstractList<MethodId>() {
109 @Override public MethodId get(int index) {
248 public List<MethodId> methodIds() { in methodIds()
405 public MethodId readMethodId() {
409 return new MethodId(DexBuffer.this, declaringClassIndex, protoIndex, nameIndex);
DDexIndexPrinter.java80 for (MethodId methodId : dexBuffer.methodIds()) { in printMethodIds()
/dalvik/vm/jdwp/
DJdwp.h41 typedef u4 MethodId; /* any kind of method, including constructors */ typedef
51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); } in dvmReadMethodId()
56 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); } in dvmSetMethodId()
63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { in expandBufAddMethodId()
83 MethodId methodId; /* method in which "idx" resides */
DJdwpHandler.cpp104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, in finishInvoke()
308 expandBufAdd4BE(pReply, sizeof(MethodId)); in handleVM_IDSizes()
756 MethodId methodId = dvmReadMethodId(&buf); in handleCT_InvokeMethod()
774 MethodId methodId = dvmReadMethodId(&buf); in handleCT_NewInstance()
812 MethodId methodId = dvmReadMethodId(&buf); in handleM_LineTable()
830 MethodId methodId = dvmReadMethodId(&buf); in handleM_VariableTableWithGeneric()
935 MethodId methodId = dvmReadMethodId(&buf); in handleOR_InvokeMethod()
/dalvik/vm/
DDebugger.h200 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id);
206 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId,
208 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId id,
286 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
DDebugger.cpp323 static MethodId methodToMethodId(const Method* meth) in methodToMethodId()
325 return (MethodId)(u4) meth; in methodToMethodId()
327 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id) in methodIdToMethod()
1144 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id) in dvmDbgGetMethodName()
1303 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId, in dvmDbgOutputLineTable()
1409 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId methodId, in dvmDbgOutputVariableTable()
2617 RefTypeId classId, MethodId methodId, u4 numArgs, ObjectId* argArray, in dvmDbgInvokeMethod()
/dalvik/dx/src/com/android/dx/command/grep/
DGrep.java24 import com.android.dx.io.MethodId;
73 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java26 import com.android.dx.io.MethodId;
162 public MethodId adjust(MethodId methodId) { in adjust()
163 return new MethodId(target, in adjust()
DDexMerger.java28 import com.android.dx.io.MethodId;
481 new IdMerger<MethodId>(idsDefsOut) { in mergeMethodIds()
486 @Override MethodId read(DexBuffer.Section in, IndexMap indexMap, int index) { in mergeMethodIds()
494 @Override void write(MethodId methodId) { in mergeMethodIds()
/dalvik/dx/src/com/android/dx/command/findusages/
DFindUsages.java24 import com.android.dx.io.MethodId;
104 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex()); in location()
177 for (MethodId method : dex.methodIds()) { in getMethodIds()