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()
50 static auto f = GET_FUNC_PTR(CreateClassLoaderNamespace); in CreateClassLoaderNamespace() local
51 return f(env, target_sdk_version, class_loader, is_shared, dex_path, library_path, in CreateClassLoaderNamespace()
58 static auto f = GET_FUNC_PTR(OpenNativeLibrary); in OpenNativeLibrary() local
59 return f(env, target_sdk_version, path, class_loader, caller_location, library_path, in OpenNativeLibrary()
64 static auto f = GET_FUNC_PTR(CloseNativeLibrary); in CloseNativeLibrary() local
65 return f(handle, needs_native_bridge, error_msg); in CloseNativeLibrary()
69 static auto f = GET_FUNC_PTR(NativeLoaderFreeErrorMessage); in NativeLoaderFreeErrorMessage() local
70 return f(msg); in NativeLoaderFreeErrorMessage()
74 static auto f = GET_FUNC_PTR(FindNamespaceByClassLoader); in FindNamespaceByClassLoader() local
75 return f(env, class_loader); in FindNamespaceByClassLoader()
80 static auto f = GET_FUNC_PTR(FindNativeLoaderNamespaceByClassLoader); in FindNativeLoaderNamespaceByClassLoader() local
81 return f(env, class_loader); in FindNativeLoaderNamespaceByClassLoader()
86 static auto f = GET_FUNC_PTR(OpenNativeLibraryInNamespace); in OpenNativeLibraryInNamespace() local
87 return f(ns, path, needs_native_bridge, error_msg); in OpenNativeLibraryInNamespace()