Home
last modified time | relevance | path

Searched refs:GetLocation (Results 1 – 25 of 31) sorted by relevance

12

/art/runtime/
Doat_file.cc383 *error_msg = StringPrintf("Invalid oat header for '%s': %s", GetLocation().c_str(), in Setup()
390 *error_msg = StringPrintf("In oat file '%s' found truncated OatHeader", GetLocation().c_str()); in Setup()
397 "%p + %zd + %ud <= %p", GetLocation().c_str(), in Setup()
409 GetLocation().c_str(), i); in Setup()
415 "location size", GetLocation().c_str(), i); in Setup()
423 "location", GetLocation().c_str(), i); in Setup()
435 "dex file checksum", GetLocation().c_str(), i, in Setup()
443 "file offset", GetLocation().c_str(), i, dex_file_location.c_str()); in Setup()
448 "offset %ud > %zd", GetLocation().c_str(), i, in Setup()
455 "after dex file offsets", GetLocation().c_str(), i, in Setup()
[all …]
Ddex_file.h412 const std::string& GetLocation() const { in GetLocation() function
455 DCHECK(header_ != nullptr) << GetLocation(); in GetHeader()
470 DCHECK(header_ != nullptr) << GetLocation(); in NumStringIds()
476 DCHECK_LT(idx, NumStringIds()) << GetLocation(); in GetStringId()
481 CHECK_GE(&string_id, string_ids_) << GetLocation(); in GetIndexForStringId()
482 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation(); in GetIndexForStringId()
521 DCHECK(header_ != nullptr) << GetLocation(); in NumTypeIds()
527 DCHECK_LT(idx, NumTypeIds()) << GetLocation(); in GetTypeId()
532 CHECK_GE(&type_id, type_ids_) << GetLocation(); in GetIndexForTypeId()
533 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation(); in GetIndexForTypeId()
[all …]
Doat_file_test.cc100 EXPECT_EQ(split1[0], dex_files_const1[0]->GetLocation()); in TEST_F()
111 EXPECT_EQ(split2[0], dex_files_const2[0]->GetLocation()); in TEST_F()
112 EXPECT_EQ(split2[1], dex_files_const2[1]->GetLocation()); in TEST_F()
Ddex_file.cc415 CHECK(begin_ != nullptr) << GetLocation(); in DexFile()
416 CHECK_GT(size_, 0U) << GetLocation(); in DexFile()
438 oss << "Unrecognized magic number in " << GetLocation() << ":" in CheckMagicAndVersion()
448 oss << "Unrecognized version number in " << GetLocation() << ":" in CheckMagicAndVersion()
771 DCHECK(code_item != nullptr) << PrettyMethod(method) << " " << GetLocation(); in GetLineNumFromPC()
839 << " >= " << code_item->registers_size_ << ") in " << GetLocation(); in DecodeDebugInfo0()
864 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation() in DecodeDebugInfo0()
893 << code_item->registers_size_ << ") in " << GetLocation(); in DecodeDebugInfo0()
921 << code_item->registers_size_ << ") in " << GetLocation(); in DecodeDebugInfo0()
935 << code_item->registers_size_ << ") in " << GetLocation(); in DecodeDebugInfo0()
[all …]
Doat_file.h89 << "Cannot get an elf file from " << GetLocation(); in GetElfFile()
93 const std::string& GetLocation() const { in GetLocation() function
Ddex_file-inl.h35 DCHECK(utf16_length != nullptr) << GetLocation(); in GetStringDataAndUtf16Length()
Dclass_linker.cc163 << klass->GetLocation() << "\n" << Thread::Current()->GetException()->Dump(); in VlogClassInitializationFailure()
687 CHECK_NE(oat_file, oat_files_[i]) << oat_file->GetLocation(); in RegisterOatFile()
690 VLOG(class_linker) << "Registering " << oat_file->GetLocation(); in RegisterOatFile()
883 compare_pop.GetDexFile()->GetLocation().c_str(), in HasCollisions()
884 top.GetDexFile()->GetLocation().c_str()); in HasCollisions()
983 + source_oat_file->GetLocation()); in OpenDexFilesFromOat()
1012 if (oat_file->GetLocation() == oat_location) { in FindOpenedOatFileFromOatLocation()
1140 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8()); in InitFromImage()
1143 CHECK(oat_dex_file != nullptr) << oat_file.GetLocation() << " " << dex_file_location; in InitFromImage()
1148 << " from within oat file " << oat_file.GetLocation() in InitFromImage()
[all …]
Doat_file_assistant.cc113 if (boot_class_path[i]->GetLocation() == std::string(dex_location_)) { in IsInBootClassPath()
214 << oat_file.GetLocation() << " for dex location " << dex_location; in LoadDexFiles()
478 VLOG(oat) << file.GetLocation() << in GivenOatFileIsUpToDate()
489 VLOG(oat) << file.GetLocation() << in GivenOatFileIsUpToDate()
Dcommon_throws.cc39 std::string location(referrer->GetLocation()); in AddReferrerLocation()
Dclass_linker_test.cc362 << dex.GetLocation() << " i=" << i; in AssertDexFile()
656 EXPECT_TRUE(EndsWith(dex_files[0]->GetLocation(), "Nested.jar")); in TEST_F()
661 EXPECT_TRUE(EndsWith(dex_files2[0]->GetLocation(), "MultiDex.jar")); in TEST_F()
Doat_file_assistant_test.cc934 CHECK(dex_files[0]->GetOatDexFile() != nullptr) << dex_files[0]->GetLocation(); in Run()
/art/compiler/
Doat_writer.cc788 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation(); in ReportWriteFailure()
941 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation(); in ReportWriteFailure()
1130 LOG(ERROR) << "Failed to get file offset in " << out->GetLocation(); in WriteRodata()
1139 PLOG(ERROR) << "Failed to reserve space for oat header in " << out->GetLocation(); in WriteRodata()
1146 LOG(ERROR) << "Failed to write oat tables to " << out->GetLocation(); in WriteRodata()
1152 LOG(ERROR) << "Failed to seek to oat code position in " << out->GetLocation(); in WriteRodata()
1158 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation(); in WriteRodata()
1169 << " Expected: " << expected_file_offset << " File: " << out->GetLocation(); in WriteRodata()
1185 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation(); in WriteCode()
1191 LOG(ERROR) << "Failed to write oat code for dex files to " << out->GetLocation(); in WriteCode()
[all …]
Doutput_stream.h40 const std::string& GetLocation() const { in GetLocation() function
Dbuffered_output_stream.cc24 : OutputStream(out->GetLocation()), out_(out), used_(0) {} in BufferedOutputStream()
Doat_test.cc138 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(), in TEST_F()
/art/compiler/utils/
Dtest_dex_file_builder_test.cc35 EXPECT_STREQ(dex_location, dex_file->GetLocation().c_str()); in TEST()
/art/compiler/optimizing/
Dinliner.cc94 if (resolved_method->GetDexFile()->GetLocation().compare(outer_dex_file.GetLocation()) != 0) { in TryInline()
/art/runtime/mirror/
Ddex_cache.h56 String* GetLocation() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetLocation() function
Dclass.cc789 std::string Class::GetLocation() { in GetLocation() function in art::mirror::Class
792 return dex_cache->GetLocation()->ToModifiedUtf8(); in GetLocation()
/art/compiler/utils/arm/
Dassembler_thumb2.cc2258 uint32_t branch_location = branch->GetLocation(); in Bind()
2262 MakeHoleForBranch(branch->GetLocation(), 2); in Bind()
2285 MakeHoleForBranch(branch->GetLocation(), 2); in Bind()
2302 bool changed = branch->Relocate(changed_branch->GetLocation(), 2); in Bind()
Dassembler_thumb2.h605 uint32_t GetLocation() const { in GetLocation() function
/art/dex2oat/
Ddex2oat.cc1317 PLOG(ERROR) << "Failed to make .dex file writeable '" << dex_file->GetLocation() << "'\n"; in Setup()
1655 if (DexFile::GetDexCanonicalLocation(dex_files[i]->GetLocation().c_str()) == in DexFilesContains()
/art/runtime/gc/space/
Dimage_space.cc833 oat_file_->GetLocation().c_str(), dex_file_location.c_str(), in ValidateOatFile()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1978 << method->GetDexFile()->GetLocation(); in artInvokeCommon()
2111 << " location: " << method->GetDexFile()->GetLocation(); in artInvokeInterfaceTrampoline()
/art/compiler/driver/
Dcompiler_driver.cc1685 << dex_file.GetLocation() << " previously found in " in SkipClass()
1686 << original_dex_file.GetLocation(); in SkipClass()

12