Lines Matching refs:actionCode
630 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) {
642 switch (actionCode) {
644 actionCode = gCodecActionCodes.codecActionTransient;
647 actionCode = gCodecActionCodes.codecActionRecoverable;
650 actionCode = 0; // everything else is fatal
666 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get());
716 int32_t err, actionCode;
718 CHECK(msg->findInt32("actionCode", &actionCode));
721 obj = (jobject)createCodecException(env, err, actionCode);
835 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) {
836 jthrowable exception = createCodecException(env, err, actionCode, msg);
890 JNIEnv *env, status_t err, int32_t actionCode = ACTION_CODE_FATAL,
918 throwCodecException(env, err, actionCode, msg);