Searched refs:bioRef (Results 1 – 3 of 3) sorted by relevance
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 441 static native long[] ASN1_seq_unpack_X509_bio(long bioRef) throws ParsingException; in ASN1_seq_unpack_X509_bio() argument 583 static native void X509_REVOKED_print(long bioRef, long x509RevokedCtx); in X509_REVOKED_print() argument 735 static native void BIO_free_all(long bioRef); in BIO_free_all() argument 1424 …static native int ENGINE_SSL_write_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long po… in ENGINE_SSL_write_BIO_direct() argument 1430 …static native int ENGINE_SSL_read_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long add… in ENGINE_SSL_read_BIO_direct() argument 1454 static native int BIO_read(long bioRef, byte[] buffer) throws IOException; in BIO_read() argument 1455 static native void BIO_write(long bioRef, byte[] buffer, int offset, int length) in BIO_write() argument
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeCrypto.java | 456 static native long[] ASN1_seq_unpack_X509_bio(long bioRef) throws ParsingException; in ASN1_seq_unpack_X509_bio() argument 611 static native void X509_REVOKED_print(long bioRef, long x509RevokedCtx); in X509_REVOKED_print() argument 768 @android.compat.annotation.UnsupportedAppUsage static native void BIO_free_all(long bioRef); in BIO_free_all() argument 1465 …static native int ENGINE_SSL_write_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long po… in ENGINE_SSL_write_BIO_direct() argument 1471 …static native int ENGINE_SSL_read_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long add… in ENGINE_SSL_read_BIO_direct() argument 1495 static native int BIO_read(long bioRef, byte[] buffer) throws IOException; in BIO_read() argument 1496 static native void BIO_write(long bioRef, byte[] buffer, int offset, int length) in BIO_write() argument
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 4133 static void NativeCrypto_BIO_free_all(JNIEnv* env, jclass, jlong bioRef) { in NativeCrypto_BIO_free_all() argument 4135 BIO* bio = to_BIO(env, bioRef); in NativeCrypto_BIO_free_all() 4742 static void NativeCrypto_X509_CRL_print(JNIEnv* env, jclass, jlong bioRef, jlong x509CrlRef, in NativeCrypto_X509_CRL_print() argument 4745 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_X509_CRL_print() 4956 static void NativeCrypto_X509_REVOKED_print(JNIEnv* env, jclass, jlong bioRef, in NativeCrypto_X509_REVOKED_print() argument 4959 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_X509_REVOKED_print() 5480 static jlong d2i_ASN1Object_to_jlong(JNIEnv* env, jlong bioRef) { in d2i_ASN1Object_to_jlong() argument 5481 BIO* bio = to_BIO(env, bioRef); in d2i_ASN1Object_to_jlong() 5497 static jlong NativeCrypto_d2i_X509_CRL_bio(JNIEnv* env, jclass, jlong bioRef) { in NativeCrypto_d2i_X509_CRL_bio() argument 5499 return d2i_ASN1Object_to_jlong<X509_CRL, d2i_X509_CRL_bio>(env, bioRef); in NativeCrypto_d2i_X509_CRL_bio() [all …]
|