/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | graphics_jni_helpers.h | 55 static inline jmethodID GetMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetMethodIDOrDie() argument 57 jmethodID res = env->GetMethodID(clazz, method_name, method_signature); in GetMethodIDOrDie() 58 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s", method_name); in GetMethodIDOrDie() 69 static inline jmethodID GetStaticMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetStaticMethodIDOrDie() argument 71 jmethodID res = env->GetStaticMethodID(clazz, method_name, method_signature); in GetStaticMethodIDOrDie() 72 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static method %s", method_name); in GetStaticMethodIDOrDie()
|
/aosp14/frameworks/base/core/jni/ |
H A D | core_jni_helpers.h | 55 static inline jmethodID GetMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetMethodIDOrDie() argument 57 jmethodID res = env->GetMethodID(clazz, method_name, method_signature); in GetMethodIDOrDie() 58 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s with signature %s", method_name, in GetMethodIDOrDie() 71 static inline jmethodID GetStaticMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetStaticMethodIDOrDie() argument 73 jmethodID res = env->GetStaticMethodID(clazz, method_name, method_signature); in GetStaticMethodIDOrDie() 75 method_name, method_signature); in GetStaticMethodIDOrDie()
|
/aosp14/frameworks/base/services/core/jni/gnss/ |
H A D | Utils.h | 92 static void callJavaMethod(JNIEnv* env, jclass clazz, jobject object, const char* method_name, 129 const char* method_name, T value) { in callJavaMethod() argument 130 jmethodID method = env->GetMethodID(clazz, method_name, signature_); in callJavaMethod() 143 void callSetter(const char* method_name, T value); 145 void callSetter(const char* method_name, T* value, size_t size); 155 void JavaObject::callSetter(const char* method_name, T value) { in callSetter() argument 156 JavaMethodHelper<T>::callJavaMethod(env_, clazz_, object_, method_name, value); in callSetter()
|
H A D | Utils.cpp | 139 void JavaObject::callSetter(const char* method_name, uint8_t* value, size_t size) { in callSetter() argument 142 jmethodID method = env_->GetMethodID(clazz_, method_name, "([B)V"); in callSetter()
|
/aosp14/frameworks/base/core/tests/coretests/jni/ |
H A D | ParcelHelper.h | 41 const char* method_name, in GetStaticMethodIDOrDie() argument 43 jmethodID res = env->GetStaticMethodID(clazz, method_name, method_signature); in GetStaticMethodIDOrDie() 44 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s with signature %s", method_name, in GetStaticMethodIDOrDie()
|
/aosp14/frameworks/base/tools/aapt2/java/ |
H A D | ProguardRules.cpp | 89 void AddMethod(size_t line_number, const std::string& method_name, in AddMethod() argument 92 {method_name, method_signature}); in AddMethod()
|
/aosp14/frameworks/base/core/api/ |
H A D | current.txt | 27920 field public static final String ERROR_KEY_METHOD_NAME = "method_name";
|