Home | History | Annotate | Download | only in browser

Lines Matching full:sslerror

24 import android.net.http.SslError;
51 private SslError mSSLCertificateOnErrorError;
280 final SslError error) {
343 SslError error) {
358 if (error.hasError(SslError.SSL_UNTRUSTED)) {
361 if (error.hasError(SslError.SSL_IDMISMATCH)) {
364 if (error.hasError(SslError.SSL_EXPIRED)) {
367 if (error.hasError(SslError.SSL_NOTYETVALID)) {
370 if (error.hasError(SslError.SSL_DATE_INVALID)) {
373 if (error.hasError(SslError.SSL_INVALID)) {
376 // The SslError should always have at least one type of error and we
379 // as as safety net in case a new error type is added to SslError