• Home
  • Raw
  • Download

Lines Matching refs:image_location

70                        const char* image_location,  in ImageSpace()  argument
82 image_location_(image_location) { in ImageSpace()
184 static bool FindImageFilenameImpl(const char* image_location, in FindImageFilenameImpl() argument
199 std::string system_image_filename(GetSystemImageFilename(image_location, image_isa)); in FindImageFilenameImpl()
222 if (!GetDalvikCacheFilename(image_location, in FindImageFilenameImpl()
234 bool ImageSpace::FindImageFilename(const char* image_location, in FindImageFilename() argument
243 return FindImageFilenameImpl(image_location, in FindImageFilename()
276 std::unique_ptr<ImageHeader> ImageSpace::ReadImageHeader(const char* image_location, in ReadImageHeader() argument
286 if (FindImageFilename(image_location, in ReadImageHeader()
311 *error_msg = StringPrintf("Unable to find image file for %s", image_location); in ReadImageHeader()
677 const char* image_location, in InitAppImage() argument
685 image_location, in InitAppImage()
747 const char* image_location, in Init() argument
754 CHECK(image_location != nullptr); in Init()
834 image_location, in Init()
886 image_location, in Init()
924 const char* image_location, in LoadImageFile() argument
950 MemMap map = MemMap::MapAnonymous(image_location, in LoadImageFile()
1364 const std::string& image_location, in BootImageLoader() argument
1371 image_location_(image_location), in BootImageLoader()
1742 std::unique_ptr<ImageSpace> Load(const std::string& image_location, in Load() argument
1765 << image_location; in Load()
1773 image_location.c_str(), in Load()
1968 const std::string& image_location, in LoadBootImage() argument
1985 if (image_location.empty()) { in LoadBootImage()
1991 image_location, in LoadBootImage()
2113 LOG(ERROR) << "Could not create image space with image file '" << image_location << "'. " in LoadBootImage()
2212 const std::string& image_location, in GetBootClassPathChecksums() argument
2222 if (!FindImageFilename(image_location.c_str(), in GetBootClassPathChecksums()
2231 image_location.c_str(), in GetBootClassPathChecksums()
2318 const std::string& image_location) { in ExpandMultiImageLocations() argument
2319 return ExpandMultiImageLocations(ArrayRef<const std::string>(dex_locations), image_location); in ExpandMultiImageLocations()
2324 const std::string& image_location) { in ExpandMultiImageLocations() argument
2328 size_t last_slash = image_location.rfind('/'); in ExpandMultiImageLocations()
2333 if (image_location.find('@', last_slash) != std::string::npos) { in ExpandMultiImageLocations()
2334 last_slash = image_location.rfind('@'); in ExpandMultiImageLocations()
2338 size_t last_dot = image_location.rfind('.'); in ExpandMultiImageLocations()
2341 std::string base = image_location; in ExpandMultiImageLocations()
2343 extension = image_location.substr(last_dot); // Including the dot. in ExpandMultiImageLocations()
2353 locations.push_back(image_location); in ExpandMultiImageLocations()