Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:reason

204 int throwForAsn1Error(JNIEnv* env, int reason, const char* message,
206 switch (reason) {
230 int throwForCipherError(JNIEnv* env, int reason, const char* message,
232 switch (reason) {
249 int throwForEvpError(JNIEnv* env, int reason, const char* message,
251 switch (reason) {
277 int throwForRsaError(JNIEnv* env, int reason, const char* message,
279 switch (reason) {
308 int throwForX509Error(JNIEnv* env, int reason, const char* message,
310 switch (reason) {
340 int reason = ERR_GET_REASON(error);
341 JNI_TRACE("OpenSSL error in %s error=%lx library=%x reason=%x (%s:%d): %s %s", location,
342 error, library, reason, file, line, message,
346 throwForRsaError(env, reason, message, defaultThrow);
349 throwForAsn1Error(env, reason, message, defaultThrow);
352 throwForCipherError(env, reason, message, defaultThrow);
355 throwForEvpError(env, reason, message, defaultThrow);
358 throwForX509Error(env, reason, message, defaultThrow);