Lines Matching refs:actionCode
1029 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument
1041 switch (actionCode) { in createCodecException()
1043 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException()
1046 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException()
1049 actionCode = 0; // everything else is fatal in createCodecException()
1065 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException()
1115 int32_t err, actionCode; in handleCallback() local
1117 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback()
1120 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback()
1279 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) { in throwCodecException() argument
1280 jthrowable exception = createCodecException(env, err, actionCode, msg); in throwCodecException()
1353 JNIEnv *env, status_t err, int32_t actionCode = ACTION_CODE_FATAL, in throwExceptionAsNecessary() argument
1381 throwCodecException(env, err, actionCode, msg); in throwExceptionAsNecessary()