Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java408 static native long[] ASN1_seq_unpack_X509_bio(long bioRef) throws ParsingException; in ASN1_seq_unpack_X509_bio() argument
550 static native void X509_REVOKED_print(long bioRef, long x509RevokedCtx); in X509_REVOKED_print() argument
702 static native void BIO_free_all(long bioRef); in BIO_free_all() argument
1375 …static native int ENGINE_SSL_write_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long po… in ENGINE_SSL_write_BIO_direct() argument
1381 …static native int ENGINE_SSL_write_BIO_heap(long ssl, NativeSsl ssl_holder, long bioRef, byte[] so… in ENGINE_SSL_write_BIO_heap() argument
1388 …static native int ENGINE_SSL_read_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long add… in ENGINE_SSL_read_BIO_direct() argument
1394 …static native int ENGINE_SSL_read_BIO_heap(long ssl, NativeSsl ssl_holder, long bioRef, byte[] des… in ENGINE_SSL_read_BIO_heap() argument
1414 static native int BIO_read(long bioRef, byte[] buffer) throws IOException; in BIO_read() argument
1415 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/
DNativeCrypto.java429 static native long[] ASN1_seq_unpack_X509_bio(long bioRef) throws ParsingException; in ASN1_seq_unpack_X509_bio() argument
584 static native void X509_REVOKED_print(long bioRef, long x509RevokedCtx); in X509_REVOKED_print() argument
741 static native void BIO_free_all(long bioRef); in BIO_free_all() argument
1422 …static native int ENGINE_SSL_write_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long po… in ENGINE_SSL_write_BIO_direct() argument
1428 …static native int ENGINE_SSL_write_BIO_heap(long ssl, NativeSsl ssl_holder, long bioRef, byte[] so… in ENGINE_SSL_write_BIO_heap() argument
1435 …static native int ENGINE_SSL_read_BIO_direct(long ssl, NativeSsl ssl_holder, long bioRef, long add… in ENGINE_SSL_read_BIO_direct() argument
1441 …static native int ENGINE_SSL_read_BIO_heap(long ssl, NativeSsl ssl_holder, long bioRef, byte[] des… in ENGINE_SSL_read_BIO_heap() argument
1461 static native int BIO_read(long bioRef, byte[] buffer) throws IOException; in BIO_read() argument
1462 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/
Dnative_crypto.cc3814 static void NativeCrypto_BIO_free_all(JNIEnv* env, jclass, jlong bioRef) { in NativeCrypto_BIO_free_all() argument
3816 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_BIO_free_all()
4356 static void NativeCrypto_X509_CRL_print(JNIEnv* env, jclass, jlong bioRef, jlong x509CrlRef, CONSCR… in NativeCrypto_X509_CRL_print() argument
4358 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_X509_CRL_print()
4541 static void NativeCrypto_X509_REVOKED_print(JNIEnv* env, jclass, jlong bioRef, in NativeCrypto_X509_REVOKED_print() argument
4544 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in NativeCrypto_X509_REVOKED_print()
5053 static jlong d2i_ASN1Object_to_jlong(JNIEnv* env, jlong bioRef) { in d2i_ASN1Object_to_jlong() argument
5054 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); in d2i_ASN1Object_to_jlong()
5071 static jlong NativeCrypto_d2i_X509_CRL_bio(JNIEnv* env, jclass, jlong bioRef) { in NativeCrypto_d2i_X509_CRL_bio() argument
5073 return d2i_ASN1Object_to_jlong<X509_CRL, d2i_X509_CRL_bio>(env, bioRef); in NativeCrypto_d2i_X509_CRL_bio()
[all …]