Home
last modified time | relevance | path

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

/libnativehelper/include_platform_header_only/nativehelper/
Djni_macros.h244 #define _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn) \ argument
249 _NATIVEHELPER_JNI_MACRO_CAST(reinterpret_cast, void *)(fn) \
256 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ argument
257 MAKE_CHECKED_JNI_NATIVE_METHOD(kind, name, sig, fn)
266 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ argument
267 _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn)
/libnativehelper/include_platform_header_only/nativehelper/detail/
Dsignature_checker.h955 template<NativeKind native_kind, typename T, T* fn>
958 template<NativeKind native_kind, typename R, typename ... Args, R (*fn)(Args...)>
959 struct is_valid_jni_function_type_helper<native_kind, R(Args...), fn> {
969 template<NativeKind native_kind, typename T, T* fn>
971 return is_valid_jni_function_type_helper<native_kind, T, fn>::value;
1040 template<typename T, T* fn>
1045 template<typename R, typename ... Args, R (*fn)(Args...)>
1046 struct FunctionTypeMetafunction<R(Args...), fn> {
1111 T* fn,
1112 size_t kMaxSize = FunctionTypeMetafunction<T, fn>::count>
[all …]
/libnativehelper/tests/
DJniSafeRegisterNativeMethods_test.cpp521 #define FN_ARGS_PAIR(fn) decltype(fn), (fn) argument