diff options
Diffstat (limited to 'runtime/utils.cc')
| -rw-r--r-- | runtime/utils.cc | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc index 4c17914265..dcfe8a75c2 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -1196,7 +1196,7 @@ std::string GetDalvikCacheFilenameOrDie(const std::string& location) {      LOG(FATAL) << "Expected path in location to be absolute: "<< location;    }    std::string cache_file(location, 1);  // skip leading slash -  if (!IsValidDexFilename(location)) { +  if (!IsValidDexFilename(location) && !IsValidImageFilename(location)) {      cache_file += "/";      cache_file += DexFile::kClassesDex;    } @@ -1216,6 +1216,10 @@ bool IsValidDexFilename(const std::string& filename) {    return EndsWith(filename, ".dex");  } +bool IsValidImageFilename(const std::string& filename) { +  return EndsWith(filename, ".art"); +} +  bool IsValidOatFilename(const std::string& filename) {    return (EndsWith(filename, ".odex") ||            EndsWith(filename, ".dex") ||  |