Home
last modified time | relevance | path

Searched refs:refType (Results 1 – 2 of 2) sorted by relevance

/dalvik/vm/interp/
DInterp.cpp1298 VerifyErrorRefType refType, int flags) in classNameFromIndex() argument
1301 if (refType == VERIFY_ERROR_REF_FIELD) { in classNameFromIndex()
1305 } else if (refType == VERIFY_ERROR_REF_METHOD) { in classNameFromIndex()
1328 VerifyErrorRefType refType, int flags) in fieldNameFromIndex() argument
1330 if (refType != VERIFY_ERROR_REF_FIELD) { in fieldNameFromIndex()
1331 ALOGW("Expected ref type %d, got %d", VERIFY_ERROR_REF_FIELD, refType); in fieldNameFromIndex()
1353 VerifyErrorRefType refType, int flags) in methodNameFromIndex() argument
1355 if (refType != VERIFY_ERROR_REF_METHOD) { in methodNameFromIndex()
1356 ALOGW("Expected ref type %d, got %d", VERIFY_ERROR_REF_METHOD,refType); in methodNameFromIndex()
1393 VerifyErrorRefType refType = static_cast<VerifyErrorRefType>(errorRefPart); in dvmThrowVerificationError() local
[all …]
/dalvik/vm/analysis/
DCodeVerify.cpp3242 VerifyErrorRefType refType; in replaceFailingInstruction() local
3263 refType = VERIFY_ERROR_REF_CLASS; in replaceFailingInstruction()
3294 refType = VERIFY_ERROR_REF_FIELD; in replaceFailingInstruction()
3307 refType = VERIFY_ERROR_REF_METHOD; in replaceFailingInstruction()
3338 (failure << 8) | (refType << (8 + kVerifyErrorRefTypeShift)); in replaceFailingInstruction()