Home
last modified time | relevance | path

Searched refs:fn (Results 1 – 3 of 3) sorted by relevance

/libnativehelper/platform_include/nativehelper/
Djni_macros.h245 #define _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn) \ argument
250 _NATIVEHELPER_JNI_MACRO_CAST(reinterpret_cast, void *)(fn) \
257 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ argument
258 MAKE_CHECKED_JNI_NATIVE_METHOD(kind, name, sig, fn)
267 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ argument
268 _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn)
/libnativehelper/platform_include/nativehelper/detail/
Dsignature_checker.h954 template<NativeKind native_kind, typename T, T fn>
957 template<NativeKind native_kind, typename R, typename ... Args, R fn(Args...)>
958 struct is_valid_jni_function_type_helper<native_kind, R(Args...), fn> {
968 template<NativeKind native_kind, typename T, T fn>
970 return is_valid_jni_function_type_helper<native_kind, T, fn>::value;
1039 template<typename T, T fn>
1044 template<typename R, typename ... Args, R fn(Args...)>
1045 struct FunctionTypeMetafunction<R(Args...), fn> {
1110 T fn,
1111 size_t kMaxSize = FunctionTypeMetafunction<T, fn>::count>
[all …]
/libnativehelper/tests/
DJniSafeRegisterNativeMethods_test.cpp534 #define FN_ARGS_PAIR(fn) decltype(fn), (fn) argument