OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bioCtx
(Results
1 - 3
of
3
) sorted by null
/libcore/crypto/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(
bioCtx
);
OpenSSLX509CRL.java
371
final long
bioCtx
= NativeCrypto.create_BIO_OutputStream(os);
373
NativeCrypto.X509_CRL_print(
bioCtx
, mContext);
376
NativeCrypto.BIO_free(
bioCtx
);
OpenSSLX509Certificate.java
384
long
bioCtx
= NativeCrypto.create_BIO_OutputStream(os);
386
NativeCrypto.X509_print_ex(
bioCtx
, mContext, 0, 0);
389
NativeCrypto.BIO_free(
bioCtx
);
Completed in 777 milliseconds