Searched refs:dstType (Results 1 – 4 of 4) sorted by relevance
/dalvik/vm/native/ |
D | java_lang_System.cpp | 156 char dstType = dstClass->descriptor[1]; in Dalvik_java_lang_System_arraycopy() local 163 bool dstPrim = (dstType != '[' && dstType != 'L'); in Dalvik_java_lang_System_arraycopy() 165 if (srcPrim != dstPrim || srcType != dstType) { in Dalvik_java_lang_System_arraycopy()
|
/dalvik/vm/analysis/ |
D | CodeVerify.cpp | 2062 RegType dstType, RegType srcType, VerifyError* pFailure) in checkUnop() argument 2065 setRegisterType(registerLine, pDecInsn->vA, dstType); in checkUnop() 2109 RegType dstType, RegType srcType, bool checkBooleanOp, in checkLitop() argument 2114 assert(dstType == kRegTypeInteger); in checkLitop() 2119 dstType = kRegTypeBoolean; in checkLitop() 2122 setRegisterType(registerLine, pDecInsn->vA, dstType); in checkLitop() 2131 RegType dstType, RegType srcType1, RegType srcType2, bool checkBooleanOp, in checkBinop() argument 2137 assert(dstType == kRegTypeInteger); in checkBinop() 2139 dstType = kRegTypeBoolean; in checkBinop() 2141 setRegisterType(registerLine, pDecInsn->vA, dstType); in checkBinop() [all …]
|
/dalvik/vm/reflect/ |
D | Reflect.cpp | 897 PrimitiveType dstType, const s4* srcPtr, s4* dstPtr) in dvmConvertPrimitiveValue() argument 906 assert((dstType != PRIM_VOID) && (dstType != PRIM_NOT)); in dvmConvertPrimitiveValue() 908 switch (dstType) { in dvmConvertPrimitiveValue() 912 conv = (srcType == dstType) ? OK4 : bad; in dvmConvertPrimitiveValue() 989 dexGetPrimitiveTypeDescriptor(dstType)); in dvmConvertPrimitiveValue()
|
D | Reflect.h | 75 PrimitiveType dstType, const s4* srcPtr, s4* dstPtr);
|