Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07f46c84 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove target_sdk_version parameter" into nyc-dev

parents 5668b84f 94ee4e69
Loading
Loading
Loading
Loading
+6 −11
Original line number Original line Diff line number Diff line
@@ -59,8 +59,7 @@ class LibraryNamespaces {
                              jobject class_loader,
                              jobject class_loader,
                              bool is_shared,
                              bool is_shared,
                              jstring java_library_path,
                              jstring java_library_path,
                              jstring java_permitted_path,
                              jstring java_permitted_path) {
                              int32_t target_sdk_version) {
    std::string library_path; // empty string by default.
    std::string library_path; // empty string by default.


    if (java_library_path != nullptr) {
    if (java_library_path != nullptr) {
@@ -83,7 +82,7 @@ class LibraryNamespaces {
      }
      }
    }
    }


    if (!initialized_ && !InitPublicNamespace(library_path.c_str(), target_sdk_version)) {
    if (!initialized_ && !InitPublicNamespace(library_path.c_str())) {
      return nullptr;
      return nullptr;
    }
    }


@@ -188,15 +187,12 @@ class LibraryNamespaces {
    return true;
    return true;
  }
  }


  bool InitPublicNamespace(const char* library_path, int32_t target_sdk_version) {
  bool InitPublicNamespace(const char* library_path) {
    std::string publicNativeLibraries = public_libraries_;

    UNUSED(target_sdk_version);
    // (http://b/25844435) - Some apps call dlopen from generated code (mono jited
    // (http://b/25844435) - Some apps call dlopen from generated code (mono jited
    // code is one example) unknown to linker in which  case linker uses anonymous
    // code is one example) unknown to linker in which  case linker uses anonymous
    // namespace. The second argument specifies the search path for the anonymous
    // namespace. The second argument specifies the search path for the anonymous
    // namespace which is the library_path of the classloader.
    // namespace which is the library_path of the classloader.
    initialized_ = android_init_namespaces(publicNativeLibraries.c_str(), library_path);
    initialized_ = android_init_namespaces(public_libraries_.c_str(), library_path);


    return initialized_;
    return initialized_;
  }
  }
@@ -263,8 +259,7 @@ jstring CreateClassLoaderNamespace(JNIEnv* env,
                                                 class_loader,
                                                 class_loader,
                                                 is_shared,
                                                 is_shared,
                                                 library_path,
                                                 library_path,
                                                 permitted_path,
                                                 permitted_path);
                                                 target_sdk_version);
  if (ns == nullptr) {
  if (ns == nullptr) {
    return env->NewStringUTF(dlerror());
    return env->NewStringUTF(dlerror());
  }
  }
@@ -292,7 +287,7 @@ void* OpenNativeLibrary(JNIEnv* env,
  if (ns == nullptr) {
  if (ns == nullptr) {
    // This is the case where the classloader was not created by ApplicationLoaders
    // This is the case where the classloader was not created by ApplicationLoaders
    // In this case we create an isolated not-shared namespace for it.
    // In this case we create an isolated not-shared namespace for it.
    ns = g_namespaces->Create(env, class_loader, false, library_path, nullptr, target_sdk_version);
    ns = g_namespaces->Create(env, class_loader, false, library_path, nullptr);
    if (ns == nullptr) {
    if (ns == nullptr) {
      return nullptr;
      return nullptr;
    }
    }