Home
last modified time | relevance | path

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

/libnativehelper/
DJniConstants.c55 #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 …]
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.md45 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()