Home
last modified time | relevance | path

Searched refs:method (Results 1 – 4 of 4) sorted by relevance

/libnativehelper/
DJniConstants.c54 #define METHOD_NAME(cls, method) g_ ## cls ## _ ## method argument
66 #define JMETHODID_DECLARE_STORAGE(cls, method, ...) \ argument
67 static jmethodID METHOD_NAME(cls, method) = NULL;
91 jmethodID method; in FindMethod() local
93 method = (*env)->GetStaticMethodID(env, cls, name, signature); in FindMethod()
95 method = (*env)->GetMethodID(env, cls, name, signature); in FindMethod()
97 ALOG_ALWAYS_FATAL_IF(method == NULL, "Method not found: %s:%s", name, signature); in FindMethod()
98 return method; in FindMethod()
124 #define JMETHODID_INITIALIZE(cls, method, name, signature, isStatic) \ in InitializeConstants() argument
125 METHOD_NAME(cls, method) = \ in InitializeConstants()
[all …]
Dlibnativehelper_lazy.c149 void* method = g_Methods[k_ ## name]; \
150 return ((method_type) method)(args); \
156 void* method = g_Methods[k_ ## name]; \
157 ((method_type) method)(args); \
DREADME.md47 implemented in C++. They ensure the C++ method declaration match the
/libnativehelper/include_jni/
Djni.h505 jmethodID FromReflectedMethod(jobject method) in FromReflectedMethod()
506 { return functions->FromReflectedMethod(this, method); } in FromReflectedMethod()