Searched refs:protoIdx (Results 1 - 10 of 10) sorted by relevance

/dalvik/libdex/
H A DDexDebugInfo.h50 u4 protoIdx,
H A DDexProto.h76 * Method prototype structure, which refers to a protoIdx in a
81 u4 protoIdx; /* index into proto_ids table of dexFile */ member in struct:DexProto
91 pProto->protoIdx = pMethodId->protoIdx;
96 * prototype must be protoIdx-based.
H A DDexDebugInfo.cpp145 u4 protoIdx,
152 DexProto proto = { pDexFile, protoIdx };
316 u4 protoIdx,
327 dexDecodeDebugInfo0(pDexFile, pCode, classDescriptor, protoIdx, accessFlags,
141 dexDecodeDebugInfo0( const DexFile* pDexFile, const DexCode* pCode, const char* classDescriptor, u4 protoIdx, u4 accessFlags, DexDebugNewPositionCb posCb, DexDebugNewLocalCb localCb, void* cnxt, const u1* stream, LocalInfo* localInReg) argument
312 dexDecodeDebugInfo( const DexFile* pDexFile, const DexCode* pCode, const char* classDescriptor, u4 protoIdx, u4 accessFlags, DexDebugNewPositionCb posCb, DexDebugNewLocalCb localCb, void* cnxt) argument
H A DDexProto.cpp122 return dexGetProtoId(pProto->dexFile, pProto->protoIdx);
H A DDexSwapVerify.cpp671 u4 protoIdx = item - state->pDexFile->pProtoIds; local
672 DexProto proto = { state->pDexFile, protoIdx };
710 DexProto proto0 = { state->pDexFile, protoIdx - 1 };
825 SWAP_INDEX2(item->protoIdx, state->pHeader->protoIdsSize);
871 if (item0->protoIdx >= item->protoIdx) {
H A DDexFile.h339 u2 protoIdx; /* index into protoIds for method prototype */ member in struct:DexMethodId
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm4rcc.java76 int protoIdx = mci.getIndex(1);
77 if (!unsignedFitsInShort(methodIdx) || !unsignedFitsInShort(protoIdx)) {
H A DForm45cc.java86 int protoIdx = mci.getIndex(1);
87 if (!unsignedFitsInShort(methodIdx) || !unsignedFitsInShort(protoIdx)) {
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DDexData.java255 mMethodIds[i].protoIdx = readShort() & 0xffff;
416 argArrayFromProtoIndex(methodId.protoIdx),
417 returnTypeFromProtoIndex(methodId.protoIdx),
602 public int protoIdx; // index into proto_ids field in class:DexData.MethodIdItem
/dalvik/dexdump/
H A DDexDump.cpp634 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
660 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
704 bool getProtoInfo(DexFile* pDexFile, u4 protoIdx, ProtoInfo* pProtoInfo) argument
706 if (protoIdx >= pDexFile->pHeader->protoIdsSize) {
710 const DexProtoId* protoId = dexGetProtoId(pDexFile, protoIdx);

Completed in 1179 milliseconds