Lines Matching defs:env

58     JNIEnv *env = aws_jni_acquire_thread_env(jvm);  in s_detach_jvm_from_thread()  local
69 JNIEnv *env = NULL; in s_aws_jni_get_thread_env() local
145 static void s_jvm_table_add_jvm_for_env(JNIEnv *env) { in s_jvm_table_add_jvm_for_env()
167 static void s_jvm_table_remove_jvm_for_env(JNIEnv *env) { in s_jvm_table_remove_jvm_for_env()
217 JNIEnv *env = s_aws_jni_get_thread_env(jvm); in aws_jni_acquire_thread_env() local
232 void aws_jni_release_thread_env(JavaVM *jvm, JNIEnv *env) { in aws_jni_release_thread_env()
241 void aws_jni_throw_runtime_exception(JNIEnv *env, const char *msg, ...) { in aws_jni_throw_runtime_exception()
262 void aws_jni_throw_null_pointer_exception(JNIEnv *env, const char *msg, ...) { in aws_jni_throw_null_pointer_exception()
271 void aws_jni_throw_illegal_argument_exception(JNIEnv *env, const char *msg, ...) { in aws_jni_throw_illegal_argument_exception()
280 bool aws_jni_check_and_clear_exception(JNIEnv *env) { in aws_jni_check_and_clear_exception()
289 bool aws_jni_get_and_clear_exception(JNIEnv *env, jthrowable *out) { in aws_jni_get_and_clear_exception()
299 int aws_size_t_from_java(JNIEnv *env, size_t *out_size, jlong java_long, const char *errmsg_prefix)… in aws_size_t_from_java()
318 jbyteArray aws_java_byte_array_new(JNIEnv *env, size_t size) { in aws_java_byte_array_new()
323 bool aws_copy_native_array_to_java_byte_array(JNIEnv *env, jbyteArray dst, uint8_t *src, size_t amo… in aws_copy_native_array_to_java_byte_array()
331 jbyteArray aws_jni_byte_array_from_cursor(JNIEnv *env, const struct aws_byte_cursor *native_data) { in aws_jni_byte_array_from_cursor()
344 int aws_jni_byte_buffer_get_position(JNIEnv *env, jobject java_byte_buffer) { in aws_jni_byte_buffer_get_position()
352 void aws_jni_byte_buffer_set_position(JNIEnv *env, jobject jByteBuf, jint position) { in aws_jni_byte_buffer_set_position()
361 void aws_jni_byte_buffer_set_limit(JNIEnv *env, jobject jByteBuf, jint limit) { in aws_jni_byte_buffer_set_limit()
367 jobject aws_jni_direct_byte_buffer_from_raw_ptr(JNIEnv *env, const void *dst, size_t capacity) { in aws_jni_direct_byte_buffer_from_raw_ptr()
378 struct aws_byte_cursor aws_jni_byte_cursor_from_jstring_acquire(JNIEnv *env, jstring str) { in aws_jni_byte_cursor_from_jstring_acquire()
393 void aws_jni_byte_cursor_from_jstring_release(JNIEnv *env, jstring str, struct aws_byte_cursor cur)… in aws_jni_byte_cursor_from_jstring_release()
399 struct aws_byte_cursor aws_jni_byte_cursor_from_jbyteArray_acquire(JNIEnv *env, jbyteArray array) { in aws_jni_byte_cursor_from_jbyteArray_acquire()
415 void aws_jni_byte_cursor_from_jbyteArray_release(JNIEnv *env, jbyteArray array, struct aws_byte_cur… in aws_jni_byte_cursor_from_jbyteArray_release()
421 struct aws_byte_cursor aws_jni_byte_cursor_from_direct_byte_buffer(JNIEnv *env, jobject byte_buffer… in aws_jni_byte_cursor_from_direct_byte_buffer()
437 struct aws_string *aws_jni_new_string_from_jstring(JNIEnv *env, jstring str) { in aws_jni_new_string_from_jstring()
449 jobject aws_jni_new_crt_exception_from_error_code(JNIEnv *env, int error_code) { in aws_jni_new_crt_exception_from_error_code()
560 JNIEnv *env, in Java_software_amazon_awssdk_crt_CRT_awsCrtInit()
609 void JNICALL Java_software_amazon_awssdk_crt_CRT_onJvmShutdown(JNIEnv *env, jclass jni_crt_class) { in Java_software_amazon_awssdk_crt_CRT_onJvmShutdown()
617 jint JNICALL Java_software_amazon_awssdk_crt_CRT_awsLastError(JNIEnv *env, jclass jni_crt_class) { in Java_software_amazon_awssdk_crt_CRT_awsLastError()
624 jstring JNICALL Java_software_amazon_awssdk_crt_CRT_awsErrorString(JNIEnv *env, jclass jni_crt_clas… in Java_software_amazon_awssdk_crt_CRT_awsErrorString()
631 jstring JNICALL Java_software_amazon_awssdk_crt_CRT_awsErrorName(JNIEnv *env, jclass jni_crt_class,… in Java_software_amazon_awssdk_crt_CRT_awsErrorName()
638 jlong JNICALL Java_software_amazon_awssdk_crt_CRT_awsNativeMemory(JNIEnv *env, jclass jni_crt_class… in Java_software_amazon_awssdk_crt_CRT_awsNativeMemory()
649 void JNICALL Java_software_amazon_awssdk_crt_CRT_dumpNativeMemory(JNIEnv *env, jclass jni_crt_class… in Java_software_amazon_awssdk_crt_CRT_dumpNativeMemory()
657 jstring aws_jni_string_from_cursor(JNIEnv *env, const struct aws_byte_cursor *native_data) { in aws_jni_string_from_cursor()
667 jstring aws_jni_string_from_string(JNIEnv *env, const struct aws_string *string) { in aws_jni_string_from_string()
677 JNIEnv *env, in Java_software_amazon_awssdk_crt_CrtResource_waitForGlobalResourceDestruction()
700 JNIEnv *env, in Java_software_amazon_awssdk_crt_CRT_nativeCheckJniExceptionContract()