Searched refs:engineRef (Results 1 – 2 of 2) sorted by relevance
/external/conscrypt/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 75 public static native String ENGINE_get_id(long engineRef); in ENGINE_get_id() argument 77 public static native int ENGINE_ctrl_cmd_string(long engineRef, String cmd, String arg, in ENGINE_ctrl_cmd_string() argument
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 2380 static jint NativeCrypto_ENGINE_add(JNIEnv* env, jclass, jlong engineRef) { argument 2381 ENGINE* e = reinterpret_cast<ENGINE*>(static_cast<uintptr_t>(engineRef)); 2407 static jint NativeCrypto_ENGINE_init(JNIEnv* env, jclass, jlong engineRef) { argument 2408 ENGINE* e = reinterpret_cast<ENGINE*>(static_cast<uintptr_t>(engineRef)); 2427 static jint NativeCrypto_ENGINE_finish(JNIEnv* env, jclass, jlong engineRef) { argument 2428 ENGINE* e = reinterpret_cast<ENGINE*>(static_cast<uintptr_t>(engineRef)); 2447 static jint NativeCrypto_ENGINE_free(JNIEnv* env, jclass, jlong engineRef) { argument 2448 ENGINE* e = reinterpret_cast<ENGINE*>(static_cast<uintptr_t>(engineRef)); 2473 static jlong NativeCrypto_ENGINE_load_private_key(JNIEnv* env, jclass, jlong engineRef, argument 2482 ENGINE* e = reinterpret_cast<ENGINE*>(static_cast<uintptr_t>(engineRef)); [all …]
|