Lines Matching defs:error_msg

913     std::string error_msg;
914 if (!jit::Jit::LoadCompilerLibrary(&error_msg)) {
915 LOG(WARNING) << "Failed to load JIT compiler with error " << error_msg;
1129 std::string error_msg;
1139 &error_msg,
1141 LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg;
1221 /*error_msg=*/ nullptr);
1258 std::string error_msg;
1264 &error_msg));
1266 LOG(ERROR) << "Could not open boot oat file for extracting boot class path: " << error_msg;
1529 std::string error_msg;
1530 java_vm_ = JavaVMExt::Create(this, runtime_options, &error_msg);
1532 LOG(ERROR) << "Could not initialize JavaVMExt: " << error_msg;
1567 bool result = class_linker_->InitFromBootImage(&error_msg);
1569 LOG(ERROR) << "Could not initialize from image: " << error_msg;
1614 if (!class_linker_->InitWithoutImage(std::move(boot_class_path), &error_msg)) {
1615 LOG(ERROR) << "Could not initialize without image: " << error_msg;
1803 bool Runtime::EnsurePluginLoaded(const char* plugin_name, std::string* error_msg) {
1812 if (!new_plugin.Load(error_msg)) {
1819 bool Runtime::EnsurePerfettoPlugin(std::string* error_msg) {
1822 return EnsurePluginLoaded(plugin_name, error_msg);
1826 std::string* error_msg) {
1833 *error_msg = "Process is not allowed to load openjdkjvmti plugin. Process must be debuggable";
1838 return runtime->EnsurePluginLoaded(plugin_name, error_msg);
1848 std::string error_msg;
1849 if (!EnsureJvmtiPlugin(this, &error_msg)) {
1850 LOG(WARNING) << "Could not load plugin: " << error_msg;
1852 ThrowIOException("%s", error_msg.c_str());
1860 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg);
1865 LOG(WARNING) << "Agent attach failed (result=" << error << ") : " << error_msg;
1867 ThrowIOException("%s", error_msg.c_str());
1894 std::string error_msg;
1896 env, "libicu_jni.so", nullptr, WellKnownClasses::java_lang_Object, &error_msg)) {
1897 LOG(FATAL) << "LoadNativeLibrary failed for \"libicu_jni.so\": " << error_msg;
1901 std::string error_msg;
1903 env, "libjavacore.so", nullptr, WellKnownClasses::java_lang_Object, &error_msg)) {
1904 LOG(FATAL) << "LoadNativeLibrary failed for \"libjavacore.so\": " << error_msg;
1911 std::string error_msg;
1913 env, kOpenJdkLibrary, nullptr, WellKnownClasses::java_lang_Object, &error_msg)) {
1914 LOG(FATAL) << "LoadNativeLibrary failed for \"" << kOpenJdkLibrary << "\": " << error_msg;
2653 std::string error_msg;
2658 &error_msg));
2660 LOG(WARNING) << "Failed to create JIT Code Cache: " << error_msg;