Lines Matching refs:f

38   auto f = reinterpret_cast<FuncPtr>(dlsym(GetLibHandle(), function_name));  in GetFuncPtr()  local
39 LOG_FATAL_IF(f == nullptr, "Failed to get address of %s: %s", function_name, dlerror()); in GetFuncPtr()
40 return f; in GetFuncPtr()
48 static auto f = GET_FUNC_PTR(InitializeNativeLoader); in InitializeNativeLoader() local
49 return f(); in InitializeNativeLoader()
55 static auto f = GET_FUNC_PTR(CreateClassLoaderNamespace); in CreateClassLoaderNamespace() local
56 return f(env, target_sdk_version, class_loader, is_shared, dex_path, library_path, in CreateClassLoaderNamespace()
63 static auto f = GET_FUNC_PTR(OpenNativeLibrary); in OpenNativeLibrary() local
64 return f(env, target_sdk_version, path, class_loader, caller_location, library_path, in OpenNativeLibrary()
69 static auto f = GET_FUNC_PTR(CloseNativeLibrary); in CloseNativeLibrary() local
70 return f(handle, needs_native_bridge, error_msg); in CloseNativeLibrary()
74 static auto f = GET_FUNC_PTR(NativeLoaderFreeErrorMessage); in NativeLoaderFreeErrorMessage() local
75 return f(msg); in NativeLoaderFreeErrorMessage()
79 static auto f = GET_FUNC_PTR(FindNamespaceByClassLoader); in FindNamespaceByClassLoader() local
80 return f(env, class_loader); in FindNamespaceByClassLoader()
85 static auto f = GET_FUNC_PTR(FindNativeLoaderNamespaceByClassLoader); in FindNativeLoaderNamespaceByClassLoader() local
86 return f(env, class_loader); in FindNativeLoaderNamespaceByClassLoader()
91 static auto f = GET_FUNC_PTR(OpenNativeLibraryInNamespace); in OpenNativeLibraryInNamespace() local
92 return f(ns, path, needs_native_bridge, error_msg); in OpenNativeLibraryInNamespace()
96 static auto f = GET_FUNC_PTR(ResetNativeLoader); in ResetNativeLoader() local
97 return f(); in ResetNativeLoader()