Searched refs:pProto (Results 1 – 2 of 2) sorted by relevance
87 DEX_INLINE void dexProtoSetFromMethodId(DexProto* pProto, in dexProtoSetFromMethodId() argument90 pProto->dexFile = pDexFile; in dexProtoSetFromMethodId()91 pProto->protoIdx = pMethodId->protoIdx; in dexProtoSetFromMethodId()98 const char* dexProtoGetShorty(const DexProto* pProto);103 const char* dexProtoGetMethodDescriptor(const DexProto* pProto,110 char* dexProtoCopyMethodDescriptor(const DexProto* pProto);117 const char* dexProtoGetParameterDescriptors(const DexProto* pProto,149 const char* dexProtoGetReturnType(const DexProto* pProto);154 size_t dexProtoGetParameterCount(const DexProto* pProto);162 int dexProtoComputeArgsSize(const DexProto* pProto);[all …]
121 static inline const DexProtoId* getProtoId(const DexProto* pProto) { in getProtoId() argument122 return dexGetProtoId(pProto->dexFile, pProto->protoIdx); in getProtoId()126 const char* dexProtoGetShorty(const DexProto* pProto) { in dexProtoGetShorty() argument127 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetShorty()129 return dexStringById(pProto->dexFile, protoId->shortyIdx); in dexProtoGetShorty()133 const char* dexProtoGetMethodDescriptor(const DexProto* pProto, in dexProtoGetMethodDescriptor() argument135 const DexFile* dexFile = pProto->dexFile; in dexProtoGetMethodDescriptor()136 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetMethodDescriptor()168 char* dexProtoCopyMethodDescriptor(const DexProto* pProto) { in dexProtoCopyMethodDescriptor() argument173 dexProtoGetMethodDescriptor(pProto, &cache)); in dexProtoCopyMethodDescriptor()[all …]