Home
last modified time | relevance | path

Searched refs:error_msg (Results 126 – 150 of 189) sorted by relevance

12345678

/art/runtime/gc/space/
Dlarge_object_space.cc139 std::string error_msg; in Alloc() local
144 &error_msg); in Alloc()
146 LOG(WARNING) << "Large object allocation failed: " << error_msg; in Alloc()
362 std::string error_msg; in Create() local
367 &error_msg); in Create()
368 CHECK(mem_map.IsValid()) << "Failed to allocate large object space mem map: " << error_msg; in Create()
382 std::string error_msg; in FreeListSpace() local
388 &error_msg); in FreeListSpace()
389 CHECK(allocation_info_map_.IsValid()) << "Failed to allocate allocation info map" << error_msg; in FreeListSpace()
Dbump_pointer_space.cc29 std::string error_msg; in Create() local
34 &error_msg); in Create()
37 << PrettySize(capacity) << " with message " << error_msg; in Create()
/art/dex2oat/
Ddex2oat_options.h64 std::string* error_msg);
/art/runtime/jit/
Djit_memory_region.h72 std::string* error_msg)
237 static int CreateZygoteMemory(size_t capacity, std::string* error_msg);
238 static bool ProtectZygoteMemory(int fd, std::string* error_msg);
Djit.h377 static bool LoadCompilerLibrary(std::string* error_msg);
476 static bool BindCompilerMethods(std::string* error_msg);
482 template <typename T> static bool LoadSymbol(T*, const char* symbol, std::string* error_msg);
/art/runtime/jni/
Djava_vm_ext.h52 std::string* error_msg);
105 std::string* error_msg);
216 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
Djni_env_ext.h47 static JNIEnvExt* Create(Thread* self, JavaVMExt* vm, std::string* error_msg);
168 JNIEnvExt(Thread* self, JavaVMExt* vm, std::string* error_msg)
/art/runtime/
Dthread_pool.cc53 std::string error_msg; in ThreadPoolWorker() local
63 &error_msg); in ThreadPoolWorker()
64 CHECK(stack_.IsValid()) << error_msg; in ThreadPoolWorker()
Daot_class_linker.h46 std::string* error_msg)
Ddexopt_test.h66 bool Dex2Oat(const std::vector<std::string>& args, std::string* error_msg);
Dplugin.h50 bool Load(/*out*/std::string* error_msg);
Daot_class_linker.cc109 std::string* error_msg) { in PerformClassVerification() argument
128 return ClassLinker::PerformClassVerification(self, klass, log_level, error_msg); in PerformClassVerification()
/art/runtime/arch/x86/
Dinstruction_set_features_x86.cc98 const std::string& variant, std::string* error_msg ATTRIBUTE_UNUSED, in FromVariant()
313 std::string* error_msg) const { in AddFeaturesFromSplitString()
348 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str()); in AddFeaturesFromSplitString()
/art/dexlayout/
Dcompact_dex_writer.h140 bool CanGenerateCompactDex(std::string* error_msg);
142 bool Write(DexContainer* output, std::string* error_msg) override;
Ddexlayout.h119 std::string* error_msg);
184 std::string* error_msg);
Ddexdiag.cc329 std::string error_msg; in DisplayMappingIfFromVdexFile() local
334 &error_msg /*out*/)); in DisplayMappingIfFromVdexFile()
339 << error_msg in DisplayMappingIfFromVdexFile()
345 if (!vdex->OpenAllDexFiles(&dex_files, &error_msg)) { in DisplayMappingIfFromVdexFile()
349 << error_msg in DisplayMappingIfFromVdexFile()
Dcompact_dex_writer.cc331 bool CompactDexWriter::CanGenerateCompactDex(std::string* error_msg) { in CanGenerateCompactDex() argument
357 *error_msg = android::base::StringPrintf("Conflicting code item for method id %u", in CanGenerateCompactDex()
363 *error_msg = android::base::StringPrintf("Conflicting debug info for method id %u", in CanGenerateCompactDex()
378 bool CompactDexWriter::Write(DexContainer* output, std::string* error_msg) { in Write() argument
379 DCHECK(error_msg != nullptr); in Write()
383 if (!CanGenerateCompactDex(error_msg)) { in Write()
/art/runtime/gc/accounting/
Datomic_stack.h254 std::string error_msg; in Init() local
259 &error_msg); in Init()
260 CHECK(mem_map_.IsValid()) << "couldn't allocate mark stack.\n" << error_msg; in Init()
Dspace_bitmap.cc85 std::string error_msg; in Create() local
90 &error_msg); in Create()
92 LOG(ERROR) << "Failed to allocate bitmap " << name << ": " << error_msg; in Create()
/art/libartbase/base/
Dcommon_art_test.cc347 std::string error_msg; in LoadExpectSingleDexFile() local
356 &error_msg, in LoadExpectSingleDexFile()
358 LOG(FATAL) << "Could not open .dex file '" << filename << "': " << error_msg << "\n"; in LoadExpectSingleDexFile()
507 std::string error_msg; in OpenDexFiles() local
514 &error_msg, in OpenDexFiles()
516 CHECK(success) << "Failed to open '" << filename << "': " << error_msg; in OpenDexFiles()
/art/dex2oat/linker/
Doat_writer.cc535 std::string error_msg; in AddDexFileSource() local
537 if (!ReadMagicAndReset(dex_file_fd.Fd(), &magic, &error_msg)) { in AddDexFileSource()
538 LOG(ERROR) << "Failed to read magic number from dex file '" << location << "': " << error_msg; in AddDexFileSource()
546 << location << "': " << error_msg; in AddDexFileSource()
559 zip_archives_.emplace_back(ZipArchive::OpenFromFd(dex_file_fd.Release(), location, &error_msg)); in AddDexFileSource()
563 << error_msg; in AddDexFileSource()
568 std::unique_ptr<ZipEntry> entry(zip_archive->Find(entry_name.c_str(), &error_msg)); in AddDexFileSource()
584 LOG(ERROR) << "No dex files in zip file '" << location << "': " << error_msg; in AddDexFileSource()
3239 std::string error_msg; in WriteDexFiles() local
3248 &error_msg); in WriteDexFiles()
[all …]
/art/dexoptanalyzer/
Ddexoptanalyzer.cc247 std::string error_msg; in ParseArgs() local
248 image_ = GetDefaultBootImageLocation(&error_msg); in ParseArgs()
251 LOG(ERROR) << error_msg; in ParseArgs()
/art/oatdump/
Doatdump_test.h159 std::string error_msg; in GenerateAppOdexFile() local
160 ForkAndExecResult res = ForkAndExec(exec_argv, post_fork_fn, &error_msg); in GenerateAppOdexFile()
165 : (::testing::AssertionFailure() << error_msg); in GenerateAppOdexFile()
/art/tools/hiddenapi/
Dhiddenapi.cc275 std::string error_msg; in OpenDexFiles() local
293 &error_msg)); in OpenDexFiles()
294 CHECK(dex_file.get() != nullptr) << "Open failed for '" << filename << "' " << error_msg; in OpenDexFiles()
306 &error_msg, in OpenDexFiles()
308 CHECK(success) << "Open failed for '" << filename << "' " << error_msg; in OpenDexFiles()
728 std::string error_msg; in ReloadDex() local
738 &error_msg); in ReloadDex()
740 LOG(FATAL) << "Failed to load edited dex file: " << error_msg; in ReloadDex()
/art/libdexfile/dex/
Dcompact_offset_table_test.cc51 std::string error_msg; in TEST() local

12345678