Searched refs:method (Results 1 – 4 of 4) sorted by relevance
/libnativehelper/ |
D | JniConstants.c | 55 #define METHOD_NAME(cls, method) g_ ## cls ## _ ## method argument 67 #define JMETHODID_DECLARE_STORAGE(cls, method, ...) \ argument 68 static jmethodID METHOD_NAME(cls, method) = NULL; 92 jmethodID method; in FindMethod() local 94 method = (*env)->GetStaticMethodID(env, cls, name, signature); in FindMethod() 96 method = (*env)->GetMethodID(env, cls, name, signature); in FindMethod() 98 ALOG_ALWAYS_FATAL_IF(method == NULL, "Method not found: %s:%s", name, signature); in FindMethod() 99 return method; in FindMethod() 125 #define JMETHODID_INITIALIZE(cls, method, name, signature, isStatic) \ in InitializeConstants() argument 126 METHOD_NAME(cls, method) = \ in InitializeConstants() [all …]
|
D | libnativehelper_lazy.c | 149 void* method = g_Methods[k_ ## name]; \ 150 return ((method_type) method)(args); \ 156 void* method = g_Methods[k_ ## name]; \ 157 ((method_type) method)(args); \
|
D | README.md | 45 implemented in C++. They ensure the C++ method declaration match the
|
/libnativehelper/include_jni/ |
D | jni.h | 505 jmethodID FromReflectedMethod(jobject method) in FromReflectedMethod() 506 { return functions->FromReflectedMethod(this, method); } in FromReflectedMethod()
|