Searched refs:method_name (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/jni/
H A Dcore_jni_helpers.h40 static inline jmethodID GetMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, argument
42 jmethodID res = env->GetMethodID(clazz, method_name, method_signature);
43 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s", method_name);
54 static inline jmethodID GetStaticMethodIDOrDie(JNIEnv* env, jclass clazz, const char* method_name, argument
56 jmethodID res = env->GetStaticMethodID(clazz, method_name, method_signature);
57 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static method %s", method_name);
/frameworks/base/tools/aapt2/java/
H A DProguardRules.h38 inline void AddMethod(const Source& source, const std::string& method_name) { argument
39 keep_method_set_[method_name].insert(source);
H A DProguardRules.cpp68 void AddMethod(size_t line_number, const std::string& method_name) { argument
69 keep_set_->AddMethod(Source(source_.path, line_number), method_name); local
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp139 const char* method_name,
151 const char* method_name,
153 jmethodID method = env->GetMethodID(clazz, method_name, signature_);
164 void callSetter(const char* method_name, T value);
166 void callSetter(const char* method_name, T* value, size_t size);
192 void JavaObject::callSetter(const char* method_name, T value) { argument
194 env_, clazz_, object_, method_name, value);
199 const char* method_name, uint8_t* value, size_t size) {
204 method_name,
147 callJavaMethod( JNIEnv* env, jclass clazz, jobject object, const char* method_name, T value) argument
198 callSetter( const char* method_name, uint8_t* value, size_t size) argument

Completed in 848 milliseconds