Searched refs:method_name (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/jni/ |
D | core_jni_helpers.h | 40 static inline jmethodID GetMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetMethodIDOrDie() argument 42 jmethodID res = env->GetMethodID(clazz, method_name, method_signature); in GetMethodIDOrDie() 43 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s", method_name); in GetMethodIDOrDie() 54 static inline jmethodID GetStaticMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetStaticMethodIDOrDie() argument 56 jmethodID res = env->GetStaticMethodID(clazz, method_name, method_signature); in GetStaticMethodIDOrDie() 57 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static method %s", method_name); in GetStaticMethodIDOrDie()
|
D | android_hardware_location_ActivityRecognitionHardware.cpp | 36 static void check_and_clear_exceptions(JNIEnv* env, const char* method_name) { in check_and_clear_exceptions() argument 41 ALOGE("An exception was thrown by '%s'.", method_name); in check_and_clear_exceptions()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_location_GnssLocationProvider.cpp | 1029 const char* method_name, 1041 const char* method_name, in callJavaMethod() argument 1043 jmethodID method = env->GetMethodID(clazz, method_name, signature_); in callJavaMethod() 1053 void callSetter(const char* method_name, T value); 1055 void callSetter(const char* method_name, T* value, size_t size); 1075 void JavaObject::callSetter(const char* method_name, T value) { in callSetter() argument 1077 env_, clazz_, object_, method_name, value); in callSetter() 1082 const char* method_name, uint8_t* value, size_t size) { in callSetter() argument 1087 method_name, in callSetter()
|