HomeSort by relevance Sort by last modified time
    Searched refs:dex_filenames (Results 1 - 2 of 2) sorted by null

  /art/dex2oat/
dex2oat.cc 594 static size_t OpenDexFiles(const std::vector<const char*>& dex_filenames,
598 for (size_t i = 0; i < dex_filenames.size(); i++) {
599 const char* dex_filename = dex_filenames[i];
601 ATRACE_BEGIN(StringPrintf("Opening dex file '%s'", dex_filenames[i]).c_str());
852 std::vector<const char*> dex_filenames; local
    [all...]
  /art/runtime/
runtime.cc 586 static bool OpenDexFilesFromImage(const std::vector<std::string>& dex_filenames,
645 static size_t OpenDexFiles(const std::vector<std::string>& dex_filenames,
649 if (!image_location.empty() && OpenDexFilesFromImage(dex_filenames, image_location, dex_files,
654 for (size_t i = 0; i < dex_filenames.size(); i++) {
655 const char* dex_filename = dex_filenames[i].c_str();
822 std::vector<std::string> dex_filenames; local
823 Split(boot_class_path_string_, ':', dex_filenames);
825 OpenDexFiles(dex_filenames, options->image_, boot_class_path);
    [all...]

Completed in 35 milliseconds