Home
last modified time | relevance | path

Searched refs:bioRef (Results 1 – 2 of 2) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java372 static native long[] ASN1_seq_unpack_X509_bio(long bioRef); in ASN1_seq_unpack_X509_bio() argument
512 static native void X509_REVOKED_print(long bioRef, long x509RevokedCtx); in X509_REVOKED_print() argument
613 static native void BIO_free_all(long bioRef); in BIO_free_all() argument
1238 static native int ENGINE_SSL_write_BIO_direct(long sslRef, long bioRef, long pos, int length, in ENGINE_SSL_write_BIO_direct() argument
1244 static native int ENGINE_SSL_write_BIO_heap(long sslRef, long bioRef, byte[] sourceJava, in ENGINE_SSL_write_BIO_heap() argument
1250 static native int ENGINE_SSL_read_BIO_direct(long sslRef, long bioRef, long address, int len, in ENGINE_SSL_read_BIO_direct() argument
1256 static native int ENGINE_SSL_read_BIO_heap(long sslRef, long bioRef, byte[] destJava, in ENGINE_SSL_read_BIO_heap() argument
1269 static native int BIO_read(long bioRef, byte[] buffer); in BIO_read() argument
1270 static native void BIO_write(long bioRef, byte[] buffer, int offset, int length) in BIO_write() argument
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp3512 static void NativeCrypto_BIO_free_all(JNIEnv* env, jclass, jlong bioRef) { in NativeCrypto_BIO_free_all() argument
3513 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_BIO_free_all()
4018 static void NativeCrypto_X509_CRL_print(JNIEnv* env, jclass, jlong bioRef, jlong x509CrlRef) { in NativeCrypto_X509_CRL_print() argument
4019 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_X509_CRL_print()
4188 static void NativeCrypto_X509_REVOKED_print(JNIEnv* env, jclass, jlong bioRef, jlong x509RevokedRef… in NativeCrypto_X509_REVOKED_print() argument
4189 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_X509_REVOKED_print()
4534 static jlong d2i_ASN1Object_to_jlong(JNIEnv* env, jlong bioRef) { in d2i_ASN1Object_to_jlong() argument
4535 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in d2i_ASN1Object_to_jlong()
4552 static jlong NativeCrypto_d2i_X509_CRL_bio(JNIEnv* env, jclass, jlong bioRef) { in NativeCrypto_d2i_X509_CRL_bio() argument
4553 return d2i_ASN1Object_to_jlong<X509_CRL, d2i_X509_CRL_bio>(env, bioRef); in NativeCrypto_d2i_X509_CRL_bio()
[all …]