Searched refs:dexStringByTypeIdx (Results 1 – 6 of 6) sorted by relevance
/dalvik/libdex/ |
D | DexProto.cpp | 144 length += strlen(dexStringByTypeIdx(dexFile, idx)); in dexProtoGetMethodDescriptor() 147 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx)); in dexProtoGetMethodDescriptor() 156 const char* desc = dexStringByTypeIdx(dexFile, idx); in dexProtoGetMethodDescriptor() 163 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx)); in dexProtoGetMethodDescriptor() 214 return dexStringByTypeIdx(pProto->dexFile, protoId->returnTypeIdx); in dexProtoGetReturnType() 282 strcmp(dexStringByTypeIdx(dexFile1, protoId1->returnTypeIdx), in protoCompare() 283 dexStringByTypeIdx(dexFile2, protoId2->returnTypeIdx)); in protoCompare() 299 strcmp(dexStringByTypeIdx(dexFile1, idx1), in protoCompare() 300 dexStringByTypeIdx(dexFile2, idx2)); in protoCompare() 522 return dexStringByTypeIdx(pIterator->proto->dexFile, idx); in dexParameterIteratorNextDescriptor()
|
D | DexFile.h | 732 DEX_INLINE const char* dexStringByTypeIdx(const DexFile* pDexFile, u4 idx) { in dexStringByTypeIdx() function 870 return dexStringByTypeIdx(pDexFile, pClassDef->classIdx); in dexGetClassDescriptor() 879 return dexStringByTypeIdx(pDexFile, pClassDef->superclassIdx); in dexGetSuperClassDescriptor()
|
D | DexSwapVerify.cpp | 666 dexStringByTypeIdx(state->pDexFile, item->returnTypeIdx), in crossVerifyProtoIdItem() 764 s = dexStringByTypeIdx(state->pDexFile, item->classIdx); in crossVerifyFieldIdItem() 770 s = dexStringByTypeIdx(state->pDexFile, item->typeIdx); in crossVerifyFieldIdItem() 836 s = dexStringByTypeIdx(state->pDexFile, item->classIdx); in crossVerifyMethodIdItem() 961 const char* descriptor = dexStringByTypeIdx(state->pDexFile, classIdx); in crossVerifyClassDefItem() 988 descriptor = dexStringByTypeIdx(state->pDexFile, item->superclassIdx); in crossVerifyClassDefItem() 1006 descriptor = dexStringByTypeIdx(state->pDexFile, in crossVerifyClassDefItem() 1028 dexStringByTypeIdx(state->pDexFile, idx1)); in crossVerifyClassDefItem() 2388 const char* descriptor = dexStringByTypeIdx(state->pDexFile, idx); in verifyEncodedAnnotation()
|
D | DexDebugInfo.cpp | 108 return dexStringByTypeIdx(pDexFile, typeIdx - 1); in readTypeIdx()
|
D | DexFile.cpp | 244 pString = dexStringByTypeIdx(pDexFile, pClassDef->classIdx); in dexCreateClassLookup()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 561 dexStringByTypeIdx(pDexFile, pTypeItem->typeIdx); in dumpInterface() 608 dexStringByTypeIdx(pDexFile, handler->typeIdx); in dumpCatches() 632 = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in dumpPositions() 658 = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in dumpLocals() 679 dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in getMethodInfo() 695 pFieldInfo->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx); in getFieldInfo() 697 dexStringByTypeIdx(pDexFile, pFieldId->classIdx); in getFieldInfo() 716 pProtoInfo->returnType = dexStringByTypeIdx(pDexFile, protoId->returnTypeIdx); in getProtoInfo() 740 const char* param = dexStringByTypeIdx(pDexFile, paramTypes->list[i].typeIdx); in getProtoInfo() 764 return dexStringByTypeIdx(pDexFile, classIdx); in getClassDescriptor() [all …]
|