Home
last modified time | relevance | path

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

/dalvik/vm/jdwp/
DJdwp.h42 typedef u4 MethodId; /* any kind of method, including constructors */ typedef
52 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); } in dvmReadMethodId()
57 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); } in dvmSetMethodId()
64 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { in expandBufAddMethodId()
84 MethodId methodId; /* method in which "idx" resides */
DJdwpHandler.c116 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId) in finishInvoke()
327 expandBufAdd4BE(pReply, sizeof(MethodId)); in handleVM_IDSizes()
830 MethodId methodId; in handleCT_InvokeMethod()
847 MethodId methodId; in handleM_LineTable()
868 MethodId methodId; in handleM_VariableTableWithGeneric()
1006 MethodId methodId; in handleOR_InvokeMethod()
/dalvik/vm/
DDebugger.h197 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id);
203 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId,
205 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId id,
284 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
DDebugger.c325 static MethodId methodToMethodId(const Method* meth) in methodToMethodId()
327 return (MethodId)(u4) meth; in methodToMethodId()
329 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id) in methodIdToMethod()
1140 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id) in dvmDbgGetMethodName()
1292 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId, in dvmDbgOutputLineTable()
1399 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId methodId, in dvmDbgOutputVariableTable()
2657 RefTypeId classId, MethodId methodId, u4 numArgs, ObjectId* argArray, in dvmDbgInvokeMethod()