Home
last modified time | relevance | path

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

/dalvik/vm/interp/
DInterp.c702 VerifyErrorRefType refType, int flags) in classNameFromIndex() argument
707 if (refType == VERIFY_ERROR_REF_FIELD) { in classNameFromIndex()
711 } else if (refType == VERIFY_ERROR_REF_METHOD) { in classNameFromIndex()
738 VerifyErrorRefType refType, int flags) in fieldNameFromIndex() argument
746 if (refType != VERIFY_ERROR_REF_FIELD) { in fieldNameFromIndex()
747 LOGW("Expected ref type %d, got %d\n", VERIFY_ERROR_REF_FIELD, refType); in fieldNameFromIndex()
771 VerifyErrorRefType refType, int flags) in methodNameFromIndex() argument
779 if (refType != VERIFY_ERROR_REF_METHOD) { in methodNameFromIndex()
780 LOGW("Expected ref type %d, got %d\n", VERIFY_ERROR_REF_METHOD,refType); in methodNameFromIndex()
820 VerifyErrorRefType refType = kind >> kVerifyErrorRefTypeShift; in dvmThrowVerificationError() local
[all …]
/dalvik/vm/alloc/
DMarkSweep.h57 void dvmHeapHandleReferences(Object *refListHead, enum RefType refType);
DMarkSweep.c867 void dvmHeapHandleReferences(Object *refListHead, enum RefType refType) in dvmHeapHandleReferences() argument
897 switch (refType) { in dvmHeapHandleReferences()
959 if (refType != REF_PHANTOM) { in dvmHeapHandleReferences()
974 …nces(): cleared %zd, enqueued %zd %s references\n", numCleared, numEnqueued, refType2str(refType)); in dvmHeapHandleReferences()
980 if (refType == REF_PHANTOM) { in dvmHeapHandleReferences()
/dalvik/vm/analysis/
DCodeVerify.c2937 VerifyErrorRefType refType; in replaceFailingInstruction() local
2960 refType = VERIFY_ERROR_REF_CLASS; in replaceFailingInstruction()
2991 refType = VERIFY_ERROR_REF_FIELD; in replaceFailingInstruction()
3004 refType = VERIFY_ERROR_REF_METHOD; in replaceFailingInstruction()
3032 (failure << 8) | (refType << (8 + kVerifyErrorRefTypeShift)); in replaceFailingInstruction()