Searched refs:pProto (Results 1 – 2 of 2) sorted by relevance
81 DEX_INLINE void dexProtoSetFromMethodId(DexProto* pProto, in dexProtoSetFromMethodId() argument84 pProto->dexFile = pDexFile; in dexProtoSetFromMethodId()85 pProto->protoIdx = pMethodId->protoIdx; in dexProtoSetFromMethodId()92 const char* dexProtoGetShorty(const DexProto* pProto);97 const char* dexProtoGetMethodDescriptor(const DexProto* pProto,104 char* dexProtoCopyMethodDescriptor(const DexProto* pProto);111 const char* dexProtoGetParameterDescriptors(const DexProto* pProto,143 const char* dexProtoGetReturnType(const DexProto* pProto);148 size_t dexProtoGetParameterCount(const DexProto* pProto);156 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()129 const char* dexProtoGetShorty(const DexProto* pProto) { in dexProtoGetShorty() argument130 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetShorty()132 return dexStringById(pProto->dexFile, protoId->shortyIdx); in dexProtoGetShorty()138 const char* dexProtoGetMethodDescriptor(const DexProto* pProto, in dexProtoGetMethodDescriptor() argument140 const DexFile* dexFile = pProto->dexFile; in dexProtoGetMethodDescriptor()141 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetMethodDescriptor()176 char* dexProtoCopyMethodDescriptor(const DexProto* pProto) { in dexProtoCopyMethodDescriptor() argument181 dexProtoGetMethodDescriptor(pProto, &cache)); in dexProtoCopyMethodDescriptor()[all …]