Searched defs:pIterator (Results 1 - 3 of 3) sorted by relevance

/dalvik/libdex/
H A DDexCatch.c85 u4 dexCatchIteratorGetEndOffset(DexCatchIterator* pIterator, argument
87 while (dexCatchIteratorNext(pIterator) != NULL) /* empty */ ;
89 return (u4) (pIterator->pEncodedData - dexGetCatchHandlerData(pCode));
H A DDexCatch.h56 DEX_INLINE void dexCatchIteratorClear(DexCatchIterator* pIterator) { argument
57 pIterator->pEncodedData = NULL;
58 pIterator->catchesAll = false;
59 pIterator->countRemaining = 0;
60 pIterator->handler.typeIdx = 0;
61 pIterator->handler.address = 0;
65 DEX_INLINE void dexCatchIteratorInitToPointer(DexCatchIterator* pIterator, argument
71 pIterator->catchesAll = true;
74 pIterator->catchesAll = false;
77 pIterator
82 dexCatchIteratorInit(DexCatchIterator* pIterator, const DexCode* pCode, u4 offset) argument
90 dexCatchIteratorNext(DexCatchIterator* pIterator) argument
120 dexFindCatchHandler(DexCatchIterator *pIterator, const DexCode* pCode, u4 address) argument
[all...]
H A DDexProto.c491 void dexParameterIteratorInit(DexParameterIterator* pIterator, argument
493 pIterator->proto = pProto;
494 pIterator->cursor = 0;
496 pIterator->parameters =
498 pIterator->parameterCount = (pIterator->parameters == NULL) ? 0
499 : pIterator->parameters->size;
506 u4 dexParameterIteratorNextIndex(DexParameterIterator* pIterator) { argument
507 int cursor = pIterator->cursor;
508 int parameterCount = pIterator
524 dexParameterIteratorNextDescriptor( DexParameterIterator* pIterator) argument
[all...]

Completed in 34 milliseconds