OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bioCtx
(Results
1 - 4
of
4
) sorted by null
/external/conscrypt/src/main/java/org/conscrypt/
OpenSSLX509CRLEntry.java
127
long
bioCtx
= NativeCrypto.create_BIO_OutputStream(os);
129
NativeCrypto.X509_REVOKED_print(
bioCtx
, mContext);
132
NativeCrypto.BIO_free_all(
bioCtx
);
OpenSSLX509CRL.java
371
final long
bioCtx
= NativeCrypto.create_BIO_OutputStream(os);
373
NativeCrypto.X509_CRL_print(
bioCtx
, mContext);
376
NativeCrypto.BIO_free_all(
bioCtx
);
NativeCrypto.java
414
public static native long d2i_X509_bio(long
bioCtx
);
418
public static native long PEM_read_bio_X509(long
bioCtx
);
435
public static native void X509_print_ex(long
bioCtx
, long x509ctx, long nmflag, long certflag);
499
public static native long[] d2i_PKCS7_bio(long
bioCtx
, int which);
505
public static native long[] PEM_read_bio_PKCS7(long
bioCtx
, int which);
509
public static native long d2i_X509_CRL_bio(long
bioCtx
);
511
public static native long PEM_read_bio_X509_CRL(long
bioCtx
);
517
public static native void X509_CRL_print(long
bioCtx
, long x509CrlCtx);
[
all
...]
OpenSSLX509Certificate.java
401
long
bioCtx
= NativeCrypto.create_BIO_OutputStream(os);
403
NativeCrypto.X509_print_ex(
bioCtx
, mContext, 0, 0);
406
NativeCrypto.BIO_free_all(
bioCtx
);
Completed in 65 milliseconds