Searched defs:cbbRef (Results 1 - 2 of 2) sorted by relevance
/external/conscrypt/common/src/main/java/org/conscrypt/ |
H A D | NativeCrypto.java | 575 static native long asn1_write_sequence(long cbbRef) throws IOException; argument 580 static native void asn1_write_octetstring(long cbbRef, byte[] data) throws IOException; argument 585 static native void asn1_write_uint64(long cbbRef, long value) throws IOException; argument 592 static native byte[] asn1_write_finish(long cbbRef) throws IOException; argument 598 static native void asn1_write_cleanup(long cbbRef); argument 605 static native void asn1_write_free(long cbbRef); argument
|
/external/conscrypt/common/src/jni/main/cpp/ |
H A D | NativeCrypto.cpp | 4447 static jlong NativeCrypto_asn1_write_sequence(JNIEnv* env, jclass, jlong cbbRef) { argument 4448 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); 4460 static void NativeCrypto_asn1_write_octetstring(JNIEnv* env, jclass, jlong cbbRef, jbyteArray data) { argument 4461 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); 4481 static void NativeCrypto_asn1_write_uint64(JNIEnv* env, jclass, jlong cbbRef, jlong data) { argument 4482 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); 4491 static jbyteArray NativeCrypto_asn1_write_finish(JNIEnv* env, jclass, jlong cbbRef) { argument 4492 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); 4516 static void NativeCrypto_asn1_write_cleanup(CONSCRYPT_UNUSED JNIEnv* env, jclass, jlong cbbRef) { argument 4517 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); 4523 NativeCrypto_asn1_write_free(CONSCRYPT_UNUSED JNIEnv* env, jclass, jlong cbbRef) argument [all...] |
Completed in 104 milliseconds