Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java574 static native long asn1_read_sequence(long cbsRef) throws IOException; in asn1_read_sequence() argument
580 static native boolean asn1_read_next_tag_is(long cbsRef, int tag) throws IOException; in asn1_read_next_tag_is() argument
587 static native long asn1_read_tagged(long cbsRef) throws IOException; in asn1_read_tagged() argument
592 static native byte[] asn1_read_octetstring(long cbsRef) throws IOException; in asn1_read_octetstring() argument
598 static native long asn1_read_uint64(long cbsRef) throws IOException; in asn1_read_uint64() argument
603 static native void asn1_read_null(long cbsRef) throws IOException; in asn1_read_null() argument
609 static native String asn1_read_oid(long cbsRef) throws IOException; in asn1_read_oid() argument
614 static native boolean asn1_read_is_empty(long cbsRef); in asn1_read_is_empty() argument
621 static native void asn1_read_free(long cbsRef); in asn1_read_free() argument
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeCrypto.java610 static native long asn1_read_sequence(long cbsRef) throws IOException; in asn1_read_sequence() argument
616 static native boolean asn1_read_next_tag_is(long cbsRef, int tag) throws IOException; in asn1_read_next_tag_is() argument
623 static native long asn1_read_tagged(long cbsRef) throws IOException; in asn1_read_tagged() argument
628 static native byte[] asn1_read_octetstring(long cbsRef) throws IOException; in asn1_read_octetstring() argument
634 static native long asn1_read_uint64(long cbsRef) throws IOException; in asn1_read_uint64() argument
639 static native void asn1_read_null(long cbsRef) throws IOException; in asn1_read_null() argument
645 static native String asn1_read_oid(long cbsRef) throws IOException; in asn1_read_oid() argument
650 static native boolean asn1_read_is_empty(long cbsRef); in asn1_read_is_empty() argument
657 static native void asn1_read_free(long cbsRef); in asn1_read_free() argument
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc4739 static jlong NativeCrypto_asn1_read_sequence(JNIEnv* env, jclass, jlong cbsRef) { in NativeCrypto_asn1_read_sequence() argument
4741 CbsHandle* cbs = reinterpret_cast<CbsHandle*>(static_cast<uintptr_t>(cbsRef)); in NativeCrypto_asn1_read_sequence()
4755 jlong cbsRef, jint tag) { in NativeCrypto_asn1_read_next_tag_is() argument
4757 CbsHandle* cbs = reinterpret_cast<CbsHandle*>(static_cast<uintptr_t>(cbsRef)); in NativeCrypto_asn1_read_next_tag_is()
4766 static jlong NativeCrypto_asn1_read_tagged(JNIEnv* env, jclass, jlong cbsRef) { in NativeCrypto_asn1_read_tagged() argument
4768 CbsHandle* cbs = reinterpret_cast<CbsHandle*>(static_cast<uintptr_t>(cbsRef)); in NativeCrypto_asn1_read_tagged()
4781 static jbyteArray NativeCrypto_asn1_read_octetstring(JNIEnv* env, jclass, jlong cbsRef) { in NativeCrypto_asn1_read_octetstring() argument
4783 CbsHandle* cbs = reinterpret_cast<CbsHandle*>(static_cast<uintptr_t>(cbsRef)); in NativeCrypto_asn1_read_octetstring()
4806 static jlong NativeCrypto_asn1_read_uint64(JNIEnv* env, jclass, jlong cbsRef) { in NativeCrypto_asn1_read_uint64() argument
4808 CbsHandle* cbs = reinterpret_cast<CbsHandle*>(static_cast<uintptr_t>(cbsRef)); in NativeCrypto_asn1_read_uint64()
[all …]