Lines Matching refs:actionCode
926 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument
938 switch (actionCode) { in createCodecException()
940 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException()
943 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException()
946 actionCode = 0; // everything else is fatal in createCodecException()
962 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException()
1012 int32_t err, actionCode; in handleCallback() local
1014 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback()
1017 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback()
1148 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) { in throwCodecException() argument
1149 jthrowable exception = createCodecException(env, err, actionCode, msg); in throwCodecException()
1215 JNIEnv *env, status_t err, int32_t actionCode = ACTION_CODE_FATAL, in throwExceptionAsNecessary() argument
1243 throwCodecException(env, err, actionCode, msg); in throwExceptionAsNecessary()