OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getBioContext
(Results
1 - 4
of
4
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLBIOInputStream.java
37
public long
getBioContext
() {
OpenSSLX509CertPath.java
146
certRefs = NativeCrypto.ASN1_seq_unpack_X509_bio(bis.
getBioContext
());
156
NativeCrypto.BIO_free(bis.
getBioContext
());
OpenSSLX509CRL.java
58
final long crlCtx = NativeCrypto.d2i_X509_CRL_bio(bis.
getBioContext
());
66
NativeCrypto.BIO_free(bis.
getBioContext
());
76
certRefs = NativeCrypto.d2i_PKCS7_bio(bis.
getBioContext
(), NativeCrypto.PKCS7_CRLS);
80
NativeCrypto.BIO_free(bis.
getBioContext
());
97
final long crlCtx = NativeCrypto.PEM_read_bio_X509_CRL(bis.
getBioContext
());
105
NativeCrypto.BIO_free(bis.
getBioContext
());
115
certRefs = NativeCrypto.PEM_read_bio_PKCS7(bis.
getBioContext
(),
120
NativeCrypto.BIO_free(bis.
getBioContext
());
OpenSSLX509Certificate.java
65
final long certCtx = NativeCrypto.d2i_X509_bio(bis.
getBioContext
());
73
NativeCrypto.BIO_free(bis.
getBioContext
());
92
certRefs = NativeCrypto.d2i_PKCS7_bio(bis.
getBioContext
(), NativeCrypto.PKCS7_CERTS);
96
NativeCrypto.BIO_free(bis.
getBioContext
());
120
final long certCtx = NativeCrypto.PEM_read_bio_X509(bis.
getBioContext
());
128
NativeCrypto.BIO_free(bis.
getBioContext
());
139
certRefs = NativeCrypto.PEM_read_bio_PKCS7(bis.
getBioContext
(),
144
NativeCrypto.BIO_free(bis.
getBioContext
());
Completed in 743 milliseconds