summaryrefslogtreecommitdiff
path: root/libnativeloader/native_loader_lazy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libnativeloader/native_loader_lazy.cpp')
-rw-r--r--libnativeloader/native_loader_lazy.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/libnativeloader/native_loader_lazy.cpp b/libnativeloader/native_loader_lazy.cpp
index 49b22ea848..5b82d00560 100644
--- a/libnativeloader/native_loader_lazy.cpp
+++ b/libnativeloader/native_loader_lazy.cpp
@@ -44,11 +44,6 @@ FuncPtr GetFuncPtr(const char* function_name) {
} // namespace
-void InitializeNativeLoader() {
- static auto f = GET_FUNC_PTR(InitializeNativeLoader);
- return f();
-}
-
jstring CreateClassLoaderNamespace(JNIEnv* env, int32_t target_sdk_version, jobject class_loader,
bool is_shared, jstring dex_path, jstring library_path,
jstring permitted_path, jstring uses_library_list) {
@@ -92,11 +87,6 @@ void* OpenNativeLibraryInNamespace(struct NativeLoaderNamespace* ns, const char*
return f(ns, path, needs_native_bridge, error_msg);
}
-void ResetNativeLoader() {
- static auto f = GET_FUNC_PTR(ResetNativeLoader);
- return f();
-}
-
#undef GET_FUNC_PTR
} // namespace android