| /* |
| * Copyright (C) 2017 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include <inttypes.h> |
| |
| #include "android-base/stringprintf.h" |
| #include "base/logging.h" |
| #include "base/macros.h" |
| #include "jni.h" |
| #include "openjdkjvmti/jvmti.h" |
| #include "ScopedUtfChars.h" |
| |
| #include "ti-agent/common_helper.h" |
| #include "ti-agent/common_load.h" |
| |
| namespace art { |
| namespace Test929Search { |
| |
| extern "C" JNIEXPORT void JNICALL Java_Main_addToBootClassLoader( |
| JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring segment) { |
| ScopedUtfChars utf(env, segment); |
| if (utf.c_str() == nullptr) { |
| return; |
| } |
| jvmtiError result = jvmti_env->AddToBootstrapClassLoaderSearch(utf.c_str()); |
| JvmtiErrorToException(env, result); |
| } |
| |
| extern "C" JNIEXPORT void JNICALL Java_Main_addToSystemClassLoader( |
| JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring segment) { |
| ScopedUtfChars utf(env, segment); |
| if (utf.c_str() == nullptr) { |
| return; |
| } |
| jvmtiError result = jvmti_env->AddToSystemClassLoaderSearch(utf.c_str()); |
| JvmtiErrorToException(env, result); |
| } |
| |
| } // namespace Test929Search |
| } // namespace art |