Searched defs:bioRef (Results 1 - 2 of 2) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
H A DNativeCrypto.java427 public static native long[] ASN1_seq_unpack_X509_bio(long bioRef); argument
569 public static native void X509_REVOKED_print(long bioRef, long x509RevokedCtx); argument
585 public static native int BIO_read(long bioRef, byte[] buffer); argument
587 public static native void BIO_write(long bioRef, byte[] buffer, int offset, int length) argument
590 public static native void BIO_free_all(long bioRef); argument
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4726 static int NativeCrypto_BIO_read(JNIEnv* env, jclass, jlong bioRef, jbyteArray outputJavaBytes) { argument
4727 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef));
4756 static void NativeCrypto_BIO_write(JNIEnv* env, jclass, jlong bioRef, jbyteArray inputJavaBytes, argument
4758 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef));
4797 static void NativeCrypto_BIO_free_all(JNIEnv* env, jclass, jlong bioRef) { argument
4798 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef));
5307 static void NativeCrypto_X509_CRL_print(JNIEnv* env, jclass, jlong bioRef, jlong x509CrlRef) { argument
5308 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef));
5475 static void NativeCrypto_X509_REVOKED_print(JNIEnv* env, jclass, jlong bioRef, jlong x509RevokedRef) { argument
5476 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef));
5665 d2i_ASN1Object_to_jlong(JNIEnv* env, jlong bioRef) argument
5683 NativeCrypto_d2i_X509_CRL_bio(JNIEnv* env, jclass, jlong bioRef) argument
5687 NativeCrypto_d2i_X509_bio(JNIEnv* env, jclass, jlong bioRef) argument
5710 PEM_ASN1Object_to_jlong(JNIEnv* env, jlong bioRef) argument
5735 NativeCrypto_PEM_read_bio_X509(JNIEnv* env, jclass, jlong bioRef) argument
5740 NativeCrypto_PEM_read_bio_X509_CRL(JNIEnv* env, jclass, jlong bioRef) argument
5790 NativeCrypto_PEM_read_bio_PKCS7(JNIEnv* env, jclass, jlong bioRef, jint which) argument
5819 NativeCrypto_d2i_PKCS7_bio(JNIEnv* env, jclass, jlong bioRef, jint which) argument
[all...]

Completed in 88 milliseconds