Home
last modified time | relevance | path

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

1234

/art/runtime/
Ddebug_print.cc112 dex_file->GetLocation().length() > base_dex_file->GetLocation().length() && in DescribeLoaders()
113 dex_file->GetLocation().compare(0u, in DescribeLoaders()
114 base_dex_file->GetLocation().length(), in DescribeLoaders()
115 base_dex_file->GetLocation()) == 0) { in DescribeLoaders()
117 oss << "+" << dex_file->GetLocation().substr(base_dex_file->GetLocation().length()); in DescribeLoaders()
119 oss << dex_file->GetLocation(); in DescribeLoaders()
154 << " defined in " << target_class->GetDexFile().GetLocation() in DumpB77342775DebugData()
163 << " defined in " << src_class->GetDexFile().GetLocation() in DumpB77342775DebugData()
176 << " defined in " << src_class->GetDexFile().GetLocation() in DumpB77342775DebugData()
Doat_file.cc433 oat_file->GetLocation().c_str(), in ReadIndexBssMapping()
454 oat_file->GetLocation().c_str(), in ReadIndexBssMapping()
470 std::string dex_location = dex_file->GetLocation(); in Setup()
495 GetLocation().c_str(), in Setup()
505 GetLocation().c_str(), in Setup()
516 GetLocation().c_str(), in Setup()
529 GetLocation().c_str(), in Setup()
542 GetLocation().c_str(), in Setup()
555 GetLocation().c_str(), in Setup()
566 GetLocation().c_str(), in Setup()
[all …]
Doat_file_manager.cc70 LocationIsOnSystem(oat_file->GetLocation().c_str()) || in RegisterOatFile()
72 << "Registering a non /system oat file: " << oat_file->GetLocation(); in RegisterOatFile()
77 CHECK_NE(oat_file.get(), existing.get()) << oat_file->GetLocation(); in RegisterOatFile()
121 if (oat_file->GetLocation() == oat_location) { in FindOpenedOatFileFromOatLocationLocked()
328 << oat_file->GetLocation() in OpenDexFilesFromOat()
346 error_msgs->push_back("Failed to open dex files from " + oat_file->GetLocation()); in OpenDexFilesFromOat()
354 VLOG(class_linker) << "Registering " << oat_file->GetLocation(); in OpenDexFilesFromOat()
370 std::string duplicates = (*duplicate_it)->GetLocation(); in OpenDexFilesFromOat()
372 duplicates += "," + (*duplicate_it)->GetLocation(); in OpenDexFilesFromOat()
461 error_msgs->push_back("Failed to make dex file " + dex_file->GetLocation() + " read-only"); in OpenDexFilesFromOat()
[all …]
Doat_file_assistant.cc172 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath()
372 *error_msg = StringPrintf("failed to find %s in %s", dex.c_str(), file.GetLocation().c_str()); in DexChecksumUpToDate()
421 !LocationIsOnSystem(file.GetLocation().c_str()) && in GivenOatFileStatus()
627 VLOG(oat) << "Failed to verify checksums of oat file " << oat_file.GetLocation() in ValidateBootClassPathChecksums()
676 std::string art_file = ReplaceFileExtension(oat_file->GetLocation(), "art"); in OpenImageSpace()
764 VLOG(oat) << file->GetLocation() << " is " << status_ in Status()
/art/libdexfile/dex/
Ddex_file.h200 const std::string& GetLocation() const { in GetLocation() function
211 DCHECK(header_ != nullptr) << GetLocation(); in GetHeader()
238 DCHECK(header_ != nullptr) << GetLocation(); in NumStringIds()
244 DCHECK_LT(idx.index_, NumStringIds()) << GetLocation(); in GetStringId()
249 CHECK_GE(&string_id, string_ids_) << GetLocation(); in GetIndexForStringId()
250 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation(); in GetIndexForStringId()
277 DCHECK(header_ != nullptr) << GetLocation(); in NumTypeIds()
287 DCHECK_LT(idx.index_, NumTypeIds()) << GetLocation(); in GetTypeId()
292 CHECK_GE(&type_id, type_ids_) << GetLocation(); in GetIndexForTypeId()
293 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation(); in GetIndexForTypeId()
[all …]
Dtest_dex_file_builder_test.cc34 EXPECT_STREQ(dex_location, dex_file->GetLocation().c_str()); in TEST()
Ddex_file.cc128 CHECK(begin_ != nullptr) << GetLocation(); in DexFile()
129 CHECK_GT(size_, 0U) << GetLocation(); in DexFile()
155 oss << "Unrecognized magic number in " << GetLocation() << ":" in CheckMagicAndVersion()
165 oss << "Unrecognized version number in " << GetLocation() << ":" in CheckMagicAndVersion()
589 dex_file.GetLocation().c_str(), in operator <<()
Dart_dex_file_loader_test.cc90 EXPECT_EQ(dexes[0]->GetLocation(), DexFileLoader::GetMultiDexLocation(0, multidex_file.c_str())); in TEST_F()
93 EXPECT_EQ(dexes[1]->GetLocation(), DexFileLoader::GetMultiDexLocation(1, multidex_file.c_str())); in TEST_F()
/art/libelffile/stream/
Derror_delaying_output_stream.h32 : OutputStream(output->GetLocation()), in ErrorDelayingOutputStream()
43 << " bytes to " << GetLocation() << " at offset " << output_offset_; in WriteFully()
71 PLOG(ERROR) << "Failed to seek in " << GetLocation() << ". Offset=" << offset in Seek()
Doutput_stream.h40 const std::string& GetLocation() const { in GetLocation() function
Dbuffered_output_stream.cc24 : OutputStream(out->GetLocation()), // Before out is moved to out_. in BufferedOutputStream()
/art/libprofile/profile/
Dprofile_boot_info_test.cc59 ASSERT_STREQ(loaded_info.GetDexFiles()[0]->GetLocation().c_str(), dex->GetLocation().c_str()); in TEST_F()
83 ASSERT_STREQ(loaded_info.GetDexFiles()[0]->GetLocation().c_str(), in TEST_F()
84 dex_files[0]->GetLocation().c_str()); in TEST_F()
Dprofile_boot_info.cc45 AddUintToBuffer(&buffer, static_cast<uint8_t>(dex_file->GetLocation().size())); in Save()
46 AddStringToBuffer(&buffer, dex_file->GetLocation()); in Save()
95 std::string dex_location = file->GetLocation(); in Load()
/art/dex2oat/linker/
Doat_writer.cc115 : OutputStream(out->GetLocation()), out_(out), writer_(writer) { } in ChecksumUpdatingOutputStream()
309 const char* GetLocation() const { in GetLocation() function in art::linker::OatWriter::OatDexFile
670 locations.push_back(oat_dex_file.GetLocation()); in GetSourceLocations()
1909 << method_ref.PrettyMethod() << " to " << out_->GetLocation(); in ReportWriteFailure()
2377 PLOG(ERROR) << "Failed to retrieve current position in " << out->GetLocation(); in WriteRodata()
2388 PLOG(ERROR) << "Failed to write class offsets to " << out->GetLocation(); in WriteRodata()
2394 PLOG(ERROR) << "Failed to write classes to " << out->GetLocation(); in WriteRodata()
2400 PLOG(ERROR) << "Failed to write method bss mappings to " << out->GetLocation(); in WriteRodata()
2406 PLOG(ERROR) << "Failed to write oat code to " << out->GetLocation(); in WriteRodata()
2412 PLOG(ERROR) << "Failed to write oat dex information to " << out->GetLocation(); in WriteRodata()
[all …]
Doat_writer_test.cc118 dex_file->GetLocation().c_str(), in WriteElf()
292 ASSERT_EQ(dex_file_data->GetLocation(), opened_dex_file->GetLocation()); in CheckOatWriteResult()
471 const OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(), in TEST_F()
799 opened_dex_file1->GetLocation()); in TestZipFileInput()
806 opened_dex_file2->GetLocation()); in TestZipFileInput()
848 opened_dex_file1->GetLocation()); in TestZipFileInput()
855 opened_dex_file2->GetLocation()); in TestZipFileInput()
/art/test/172-app-image-twice/
Ddebug_print_class.cc28 LOG(ERROR) << "klass: " << klass.Ptr() << " dex_file: " << klass->GetDexFile().GetLocation() in Java_Main_debugPrintClass()
/art/openjdkjvmti/
Dti_breakpoint.h67 jlocation GetLocation() const { in GetLocation() function
Dti_breakpoint.cc85 orig_method, JvmtiBreakpointReflectionSource(it.GetLocation(), orig_method)); in VisitReflectiveTargets()
87 updated_breakpoints.push_back({ Breakpoint { am, it.GetLocation() }, it }); in VisitReflectiveTargets()
Dfixed_up_dex_file.cc121 original.GetLocation().c_str(), in Create()
/art/test/596-app-images/
Dapp_images.cc68 check_name(image_space->GetOatFile()->GetLocation(), image_name.c_str())) { in Java_Main_checkAppImageLoaded()
/art/runtime/jit/
Dprofile_saver.cc458 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in FetchAndCacheResolvedClassesAndMethods()
460 VLOG(profiler) << "Location " << dex_file->GetLocation() in FetchAndCacheResolvedClassesAndMethods()
477 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in FetchAndCacheResolvedClassesAndMethods()
493 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in FetchAndCacheResolvedClassesAndMethods()
498 << " (" << dex_file->GetLocation() << ")"; in FetchAndCacheResolvedClassesAndMethods()
701 << location << " oat location: " << oat_file->GetLocation(); in ShouldProfileLocation()
738 const std::string& location = dex_file->GetLocation(); in Start()
/art/libartbase/base/
Dcommon_art_test.cc548 std::string classpath = dex_files[0]->GetLocation(); in CreateClassPath()
550 classpath += ":" + dex_files[i]->GetLocation(); in CreateClassPath()
558 std::string classpath = dex_files[0]->GetLocation() + "*" + in CreateClassPathWithChecksums()
561 classpath += ":" + dex_files[i]->GetLocation() + "*" + in CreateClassPathWithChecksums()
/art/dex2oat/
Ddex2oat_test.cc1161 std::string context = "PCL[" + dex_files[0]->GetLocation() + "]"; in TEST_F()
1163 dex_files[0]->GetLocation() + "*" + std::to_string(dex_files[0]->GetLocationChecksum()) + "]"; in TEST_F()
1204 expected_classpath_key += oat_dex_files[i]->GetLocation() + "*" + in TEST_F()
1413 {dex->GetLocation()}, in TEST_F()
1426 dex->GetLocation(), in TEST_F()
1582 {dex->GetLocation()}, in TEST_F()
1590 {dex->GetLocation()}, in TEST_F()
1605 {dex->GetLocation()}, in TEST_F()
1613 {dex->GetLocation()}, in TEST_F()
1629 ASSERT_TRUE(GenerateOdexForTest(dex->GetLocation(), in TEST_F()
[all …]
/art/runtime/native/
Djava_lang_VMClassLoader.cc146 const std::string location(DexFileLoader::GetBaseLocation(dex_file->GetLocation())); in VMClassLoader_getBootClassPathEntries()
/art/runtime/verifier/
Dverifier_deps.cc812 LOG(ERROR) << "Failed to parse dex file dependencies for " << dex_file->GetLocation(); in ParseStoredData()
840 LOG(ERROR) << "Failed to parse dex file dependencies for " << dex_file->GetLocation(); in ParseVerifiedClasses()
897 return lhs.first->GetLocation() < rhs.first->GetLocation(); in Dump()
903 << dex_file.GetLocation() in Dump()
1255 + "(dexFile expected=" + dex_file.GetLocation() in VerifyInternalClasses()
1256 + ", actual=" + cp_dex_file->GetLocation() + ")"; in VerifyInternalClasses()

1234