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

  /dalvik/vm/jdwp/
Jdwp.h 42 typedef u4 MethodId; /* any kind of method, including constructors */
52 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
57 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); }
64 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) {
84 MethodId methodId; /* method in which "idx" resides */
JdwpHandler.c 66 pLoc->methodId = dvmReadMethodId(pBuf);
77 expandBufAddMethodId(pReply, pLoc->methodId);
121 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
135 LOGV(" classId=%llx methodId=%x %s.%s\n",
136 classId, methodId,
138 dvmDbgGetMethodName(classId, methodId));
167 err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
343 expandBufAdd4BE(pReply, sizeof(MethodId));
860 MethodId methodId
    [all...]
  /dalvik/vm/
Debugger.h 201 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id);
207 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId,
209 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId id,
288 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
Debugger.c 344 * Convert to/from a MethodId.
349 static MethodId methodToMethodId(const Method* meth)
351 return (MethodId)(u4) meth;
353 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id)
1202 * Get the method name from a MethodId.
1204 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id)
    [all...]

Completed in 78 milliseconds