Home
last modified time | relevance | path

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

12345678

/art/runtime/interpreter/
Dunstarted_runtime.cc485 std::string* error_msg) { in FindAndExtractEntry() argument
488 std::unique_ptr<ZipArchive> zip_archive(ZipArchive::Open(jar_file.c_str(), error_msg)); in FindAndExtractEntry()
492 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(entry_name, error_msg)); in FindAndExtractEntry()
496 MemMap tmp_map = zip_entry->ExtractToMemMap(jar_file.c_str(), entry_name, error_msg); in FindAndExtractEntry()
1213 std::string error_msg(StringPrintf("Array out of bounds in peekArray: %d/%d vs %d", in UnstartedMemoryPeekArray() local
1215 Runtime::Current()->AbortTransactionAndThrowAbortError(self, error_msg.c_str()); in UnstartedMemoryPeekArray()
/art/runtime/jni/
Djni_internal_test.cc1318 std::string error_msg(StringPrintf("not an object type: %s", primitive_names[i])); in TEST_F() local
1319 jni_abort_catcher.Check(error_msg.c_str()); in TEST_F()
1327 std::string error_msg(StringPrintf("not an object type: %s", primitive_names[i])); in TEST_F() local
1328 jni_abort_catcher.Check(error_msg.c_str()); in TEST_F()
2465 std::string error_msg; in TEST_F() local
2469 &error_msg); in TEST_F()
2470 ASSERT_TRUE(irt.IsValid()) << error_msg; in TEST_F()
Djni_internal.cc2596 std::string error_msg; in EnsureLocalCapacityInternal() local
2597 if (!soa.Env()->locals_.EnsureFreeCapacity(static_cast<size_t>(desired_capacity), &error_msg)) { in EnsureLocalCapacityInternal()
2598 std::string caller_error = android::base::StringPrintf("%s: %s", caller, error_msg.c_str()); in EnsureLocalCapacityInternal()
/art/runtime/
Druntime.h131 bool EnsurePluginLoaded(const char* plugin_name, std::string* error_msg);
132 bool EnsurePerfettoPlugin(std::string* error_msg);
Dclass_loader_context.cc458 std::string error_msg; in OpenDexFiles() local
468 &error_msg, in OpenDexFiles()
494 &error_msg, in OpenDexFiles()
Dthread.cc867 std::string error_msg; in CreateNativeThread() local
869 JNIEnvExt::Create(child_thread, Runtime::Current()->GetJavaVM(), &error_msg)); in CreateNativeThread()
910 StringPrintf("Could not allocate JNI Env: %s", error_msg.c_str()) : in CreateNativeThread()
961 std::string error_msg; in Init() local
962 tlsPtr_.jni_env = JNIEnvExt::Create(this, java_vm, &error_msg); in Init()
964 LOG(ERROR) << "Failed to create JNIEnvExt: " << error_msg; in Init()
/art/dex2oat/driver/
Dcompiler_driver.cc1848 std::string error_msg; in FastVerify() local
1856 &error_msg)) { in FastVerify()
1857 LOG(WARNING) << "Fast verification failed: " << error_msg; in FastVerify()
1998 std::string error_msg; in Visit() local
2009 &error_msg); in Visit()
2012 << " because: " << error_msg; in Visit()
/art/runtime/gc/collector/
Dmark_sweep.cc105 std::string error_msg; in MarkSweep() local
111 &error_msg); in MarkSweep()
113 << "Couldn't allocate sweep array free buffer: " << error_msg; in MarkSweep()
Dconcurrent_copying.cc144 std::string error_msg; in ConcurrentCopying() local
150 &error_msg); in ConcurrentCopying()
152 << "Couldn't allocate sweep array free buffer: " << error_msg; in ConcurrentCopying()
/art/runtime/jit/
Djit_code_cache.h194 std::string* error_msg);
/art/runtime/verifier/
Dmethod_verifier.cc726 ALWAYS_INLINE bool FailOrAbort(bool condition, const char* error_msg, uint32_t work_insn_idx);
844 const char* error_msg, in FailOrAbort() argument
851 DCHECK(condition) << error_msg << work_insn_idx << " " in FailOrAbort()
855 LOG(ERROR) << error_msg << work_insn_idx; in FailOrAbort()
856 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx; in FailOrAbort()
863 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx; in FailOrAbort()
3484 for (auto& error_msg : failure_messages_) { in CodeFlowVerifyInstruction() local
3485 LOG(ERROR) << error_msg->str(); in CodeFlowVerifyInstruction()
/art/dexdump/
Ddexdump.cc1914 std::string error_msg; in processFile() local
1922 &error_msg, in processFile()
1926 LOG(ERROR) << error_msg; in processFile()
/art/runtime/gc/allocator/
Drosalloc.cc93 std::string error_msg; in RosAlloc() local
98 &error_msg); in RosAlloc()
99 CHECK(page_map_mem_map_.IsValid()) << "Couldn't allocate the page map : " << error_msg; in RosAlloc()
/art/dex2oat/linker/
Dimage_writer.cc948 std::string error_msg; in AllocMemory() local
953 &error_msg); in AllocMemory()
955 LOG(ERROR) << "Failed to allocate memory for image file generation: " << error_msg; in AllocMemory()

12345678