Searched refs:protoId (Results 1 – 4 of 4) sorted by relevance
127 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetShorty() local129 return dexStringById(pProto->dexFile, protoId->shortyIdx); in dexProtoGetShorty()136 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetMethodDescriptor() local137 const DexTypeList* typeList = dexGetProtoParameters(dexFile, protoId); in dexProtoGetMethodDescriptor()147 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx)); in dexProtoGetMethodDescriptor()163 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx)); in dexProtoGetMethodDescriptor()213 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetReturnType() local214 return dexStringByTypeIdx(pProto->dexFile, protoId->returnTypeIdx); in dexProtoGetReturnType()219 const DexProtoId* protoId = getProtoId(pProto); in dexProtoGetParameterCount() local221 dexGetProtoParameters(pProto->dexFile, protoId); in dexProtoGetParameterCount()
202 ProtoIdItem protoId = mProtoIds[i]; in loadProtoIds() local204 int offset = protoId.parametersOff; in loadProtoIds()207 protoId.types = new int[0]; in loadProtoIds()212 protoId.types = new int[size]; in loadProtoIds()215 protoId.types[j] = readShort() & 0xffff; in loadProtoIds()331 ProtoIdItem protoId = mProtoIds[idx]; in argArrayFromProtoIndex() local332 String[] result = new String[protoId.types.length]; in argArrayFromProtoIndex()334 for (int i = 0; i < protoId.types.length; i++) { in argArrayFromProtoIndex()335 result[i] = mStrings[mTypeIds[protoId.types[i]].descriptorIdx]; in argArrayFromProtoIndex()346 ProtoIdItem protoId = mProtoIds[idx]; in returnTypeFromProtoIndex() local[all …]
69 for (ProtoId protoId : dex.protoIds()) { in printProtoIds()70 System.out.println("proto " + index + ": " + protoId); in printProtoIds()
207 public ProtoId adjust(ProtoId protoId) { in adjust() argument209 adjustString(protoId.getShortyIndex()), in adjust()210 adjustType(protoId.getReturnTypeIndex()), in adjust()211 adjustTypeListOffset(protoId.getParametersOffset())); in adjust()