Lines Matching refs:actionCode
1037 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument
1049 switch (actionCode) { in createCodecException()
1051 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException()
1054 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException()
1057 actionCode = 0; // everything else is fatal in createCodecException()
1073 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException()
1292 int32_t err, actionCode; in handleCallback() local
1295 CHECK(msg->findInt32("actionCode",&actionCode)); in handleCallback()
1303 int32_t err, actionCode; in handleCallback() local
1305 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback()
1308 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback()
1482 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) { in throwCodecException() argument
1483 jthrowable exception = createCodecException(env, err, actionCode, msg); in throwCodecException()
1502 JNIEnv *env, status_t err, int32_t actionCode = ACTION_CODE_FATAL, in throwExceptionAsNecessary() argument
1539 env, err, actionCode, in throwExceptionAsNecessary()
1547 int32_t actionCode = ACTION_CODE_FATAL) { in throwExceptionAsNecessary() argument
1548 return throwExceptionAsNecessary(env, err, actionCode, NULL, NULL, codec); in throwExceptionAsNecessary()