Home
last modified time | relevance | path

Searched refs:dex_location_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Doat_file_assistant.cc112 dex_location_.assign(dex_location); in OatFileAssistant()
123 if (DexLocationToOdexFilename(dex_location_, isa_, &odex_file_name, &error_msg)) { in OatFileAssistant()
132 if (DexLocationToOatFilename(dex_location_, isa_, &oat_file_name, &error_msg)) { in OatFileAssistant()
136 << dex_location_ << ": " << error_msg; in OatFileAssistant()
144 size_t pos = dex_location_.rfind('/'); in OatFileAssistant()
146 LOG(WARNING) << "Failed to determine dex file parent directory: " << dex_location_; in OatFileAssistant()
150 std::string parent = dex_location_.substr(0, pos); in OatFileAssistant()
154 VLOG(oat) << "Dex parent of " << dex_location_ << " is not writable: " << strerror(errno); in OatFileAssistant()
172 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath()
173 VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path"; in IsInBootClassPath()
[all …]
Doat_file_assistant.h401 std::string dex_location_; variable
Doat_file_assistant_test.cc1111 dex_location_(dex_location), in RaceGenerateTask()
1127 args.push_back("--dex-file=" + dex_location_); in Run()
1134 dex_location_.c_str(), in Run()
1152 std::string dex_location_; member in art::RaceGenerateTask
/art/profman/
Dprofman.cc435 : dex_location_(dex_location), checksum_(checksum) {} in ProfileFilterKey()
436 const std::string dex_location_; member
440 return checksum_ == other.checksum_ && dex_location_ == other.dex_location_; in operator ==()
444 ? dex_location_ < other.dex_location_ in operator <()