Lines Matching refs:decInsn
335 DecodedInstruction decInsn; in checkNewInstance() local
339 decodeInstruction(meth, insnIdx, &decInsn); in checkNewInstance()
340 idx = decInsn.vB; // 2nd item in checkNewInstance()
365 DecodedInstruction decInsn; in checkNewArray() local
369 decodeInstruction(meth, insnIdx, &decInsn); in checkNewArray()
370 idx = decInsn.vC; // 3rd item in checkNewArray()
406 DecodedInstruction decInsn; in checkTypeIndex() local
409 decodeInstruction(meth, insnIdx, &decInsn); in checkTypeIndex()
411 idx = decInsn.vB; in checkTypeIndex()
413 idx = decInsn.vC; in checkTypeIndex()
430 DecodedInstruction decInsn; in checkFieldIndex() local
433 decodeInstruction(meth, insnIdx, &decInsn); in checkFieldIndex()
435 idx = decInsn.vB; in checkFieldIndex()
437 idx = decInsn.vC; in checkFieldIndex()
455 DecodedInstruction decInsn; in checkMethodIndex() local
457 decodeInstruction(meth, insnIdx, &decInsn); in checkMethodIndex()
458 if (decInsn.vB >= pDvmDex->pHeader->methodIdsSize) { in checkMethodIndex()
460 decInsn.vB, pDvmDex->pHeader->methodIdsSize); in checkMethodIndex()
474 DecodedInstruction decInsn; in checkStringIndex() local
476 decodeInstruction(meth, insnIdx, &decInsn); in checkStringIndex()
477 if (decInsn.vB >= pDvmDex->pHeader->stringIdsSize) { in checkStringIndex()
479 decInsn.vB, pDvmDex->pHeader->stringIdsSize); in checkStringIndex()