Home | History | Annotate | Download | only in vm

Lines Matching full:presult

62  * At this point, pResult->l has already been converted to an object pointer.
64 static void checkCallResultCommon(const u4* args, const JValue* pResult,
67 assert(pResult->l != NULL);
68 const Object* resultObj = (const Object*) pResult->l;
83 * Make sure that pResult->l is an instance of the type this
133 static inline bool callNeedsCheck(const u4* args, JValue* pResult,
136 return (method->shorty[0] == 'L' && !dvmCheckException(self) && pResult->l != NULL);
142 void dvmCheckCallJNIMethod(const u4* args, JValue* pResult,
145 dvmCallJNIMethod(args, pResult, method, self);
146 if (callNeedsCheck(args, pResult, method, self)) {
147 checkCallResultCommon(args, pResult, method, self);