• Home
  • Raw
  • Download

Lines Matching refs:x509crl

3903     X509_CRL* x509crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509crlRef));  in NativeCrypto_X509_CRL_get0_by_cert()  local
3905 JNI_TRACE("X509_CRL_get0_by_cert(%p, %p)", x509crl, x509); in NativeCrypto_X509_CRL_get0_by_cert()
3907 if (x509crl == nullptr) { in NativeCrypto_X509_CRL_get0_by_cert()
3909 JNI_TRACE("X509_CRL_get0_by_cert(%p, %p) => x509crl == null", x509crl, x509); in NativeCrypto_X509_CRL_get0_by_cert()
3913 JNI_TRACE("X509_CRL_get0_by_cert(%p, %p) => x509 == null", x509crl, x509); in NativeCrypto_X509_CRL_get0_by_cert()
3918 int ret = X509_CRL_get0_by_cert(x509crl, &revoked, x509); in NativeCrypto_X509_CRL_get0_by_cert()
3920 JNI_TRACE("X509_CRL_get0_by_cert(%p, %p) => none", x509crl, x509); in NativeCrypto_X509_CRL_get0_by_cert()
3924 JNI_TRACE("X509_CRL_get0_by_cert(%p, %p) => %p", x509crl, x509, revoked); in NativeCrypto_X509_CRL_get0_by_cert()
3929 X509_CRL* x509crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509crlRef)); in NativeCrypto_X509_CRL_get0_by_serial() local
3930 JNI_TRACE("X509_CRL_get0_by_serial(%p, %p)", x509crl, serialArray); in NativeCrypto_X509_CRL_get0_by_serial()
3932 if (x509crl == nullptr) { in NativeCrypto_X509_CRL_get0_by_serial()
3934 JNI_TRACE("X509_CRL_get0_by_serial(%p, %p) => crl == null", x509crl, serialArray); in NativeCrypto_X509_CRL_get0_by_serial()
3940 JNI_TRACE("X509_CRL_get0_by_serial(%p, %p) => BN allocation failed", x509crl, serialArray); in NativeCrypto_X509_CRL_get0_by_serial()
3949 JNI_TRACE("X509_CRL_get0_by_serial(%p, %p) => BN conversion failed", x509crl, serialArray); in NativeCrypto_X509_CRL_get0_by_serial()
3955 JNI_TRACE("X509_CRL_get0_by_serial(%p, %p) => BN conversion failed", x509crl, serialArray); in NativeCrypto_X509_CRL_get0_by_serial()
3960 int ret = X509_CRL_get0_by_serial(x509crl, &revoked, serialInteger.get()); in NativeCrypto_X509_CRL_get0_by_serial()
3962 JNI_TRACE("X509_CRL_get0_by_serial(%p, %p) => none", x509crl, serialArray); in NativeCrypto_X509_CRL_get0_by_serial()
3966 JNI_TRACE("X509_CRL_get0_by_cert(%p, %p) => %p", x509crl, serialArray, revoked); in NativeCrypto_X509_CRL_get0_by_serial()