Searched refs:dex_location_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | oat_file_assistant.cc | 124 dex_location_.assign(dex_location); in OatFileAssistant() 135 if (DexLocationToOdexFilename(dex_location_, isa_, &odex_file_name, &error_msg)) { in OatFileAssistant() 151 if (DexLocationToOatFilename(dex_location_, isa_, &oat_file_name, &error_msg)) { in OatFileAssistant() 157 << dex_location_ << ": " << error_msg; in OatFileAssistant() 165 size_t pos = dex_location_.rfind('/'); in OatFileAssistant() 167 LOG(WARNING) << "Failed to determine dex file parent directory: " << dex_location_; in OatFileAssistant() 171 std::string parent = dex_location_.substr(0, pos); in OatFileAssistant() 175 VLOG(oat) << "Dex parent of " << dex_location_ << " is not writable: " << strerror(errno); in OatFileAssistant() 193 if (boot_class_path[i]->GetLocation() == dex_location_) { in IsInBootClassPath() 194 VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path"; in IsInBootClassPath() [all …]
|
D | oat_file_assistant.h | 415 std::string dex_location_; variable
|
D | oat_file_assistant_test.cc | 1251 dex_location_(dex_location), in RaceGenerateTask() 1267 args.push_back("--dex-file=" + dex_location_); in Run() 1274 dex_location_.c_str(), in Run() 1292 std::string dex_location_; member in art::RaceGenerateTask
|
/art/profman/ |
D | profman.cc | 490 : dex_location_(dex_location), checksum_(checksum) {} in ProfileFilterKey() 491 const std::string dex_location_; member 495 return checksum_ == other.checksum_ && dex_location_ == other.dex_location_; in operator ==() 499 ? dex_location_ < other.dex_location_ in operator <()
|