Searched refs:protoIdx (Results 1 – 10 of 10) sorted by relevance
/dalvik/libdex/ |
D | DexProto.h | 81 u4 protoIdx; /* index into proto_ids table of dexFile */ member 91 pProto->protoIdx = pMethodId->protoIdx; in dexProtoSetFromMethodId()
|
D | DexDebugInfo.cpp | 93 u4 protoIdx, in dexDecodeDebugInfo0() argument 100 DexProto proto = { pDexFile, protoIdx }; in dexDecodeDebugInfo0() 263 u4 protoIdx, in dexDecodeDebugInfo() argument 274 dexDecodeDebugInfo0(pDexFile, pCode, classDescriptor, protoIdx, accessFlags, in dexDecodeDebugInfo()
|
D | DexDebugInfo.h | 50 u4 protoIdx,
|
D | DexProto.cpp | 122 return dexGetProtoId(pProto->dexFile, pProto->protoIdx); in getProtoId()
|
D | DexSwapVerify.cpp | 671 u4 protoIdx = item - state->pDexFile->pProtoIds; in crossVerifyProtoIdItem() local 672 DexProto proto = { state->pDexFile, protoIdx }; in crossVerifyProtoIdItem() 710 DexProto proto0 = { state->pDexFile, protoIdx - 1 }; in crossVerifyProtoIdItem() 825 SWAP_INDEX2(item->protoIdx, state->pHeader->protoIdsSize); in swapMethodIdItem() 871 if (item0->protoIdx >= item->protoIdx) { in crossVerifyMethodIdItem()
|
D | DexFile.h | 350 u2 protoIdx; /* index into protoIds for method prototype */ member
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
D | Form4rcc.java | 76 int protoIdx = mci.getIndex(1); in isCompatible() local 77 if (!unsignedFitsInShort(methodIdx) || !unsignedFitsInShort(protoIdx)) { in isCompatible()
|
D | Form45cc.java | 86 int protoIdx = mci.getIndex(1); in isCompatible() local 87 if (!unsignedFitsInShort(methodIdx) || !unsignedFitsInShort(protoIdx)) { in isCompatible()
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
D | DexData.java | 256 mMethodIds[i].protoIdx = readShort() & 0xffff; in loadMethodIds() 417 argArrayFromProtoIndex(methodId.protoIdx), in addExternalMethodReferences() 418 returnTypeFromProtoIndex(methodId.protoIdx), in addExternalMethodReferences() 607 public int protoIdx; // index into proto_ids field in DexData.MethodIdItem
|
/dalvik/dexdump/ |
D | DexDump.cpp | 627 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx, in dumpPositions() 653 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx, in dumpLocals() 697 bool getProtoInfo(DexFile* pDexFile, u4 protoIdx, ProtoInfo* pProtoInfo) in getProtoInfo() argument 699 if (protoIdx >= pDexFile->pHeader->protoIdsSize) { in getProtoInfo() 703 const DexProtoId* protoId = dexGetProtoId(pDexFile, protoIdx); in getProtoInfo()
|