Home | History | Annotate | Download | only in libdex

Lines Matching refs:pCode

493 size_t dexGetDexCodeSize(const DexCode* pCode)
503 if (pCode->triesSize != 0) {
504 handlersSize = dexGetHandlersSize(pCode);
505 offset = dexGetFirstHandlerOffset(pCode);
513 dexCatchIteratorInit(&iterator, pCode, offset);
514 offset = dexCatchIteratorGetEndOffset(&iterator, pCode);
517 const u1* handlerData = dexGetCatchHandlerData(pCode);
519 //LOGD("+++ pCode=%p handlerData=%p last offset=%d",
520 // pCode, handlerData, offset);
523 return (handlerData - (u1*) pCode) + offset;