HomeSort by relevance Sort by last modified time
    Searched full:dex_filename (Results 1 - 4 of 4) sorted by null

  /art/runtime/
runtime.cc 639 const char* dex_filename = dex_filenames[i].c_str(); local
641 if (!OS::FileExists(dex_filename)) {
642 LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'";
645 if (!DexFile::Open(dex_filename, dex_filename, &error_msg, &dex_files)) {
646 LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg;
    [all...]
class_linker.h 271 bool GenerateOatFile(const char* dex_filename,
    [all...]
class_linker.cc 596 bool ClassLinker::GenerateOatFile(const char* dex_filename,
609 "without an image.", dex_filename);
615 dex_file_option += dex_filename;
    [all...]
  /art/dex2oat/
dex2oat.cc 567 const char* dex_filename = dex_filenames[i]; local
571 if (!OS::FileExists(dex_filename)) {
572 LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'";
575 if (!DexFile::Open(dex_filename, dex_location, &error_msg, &dex_files)) {
576 LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg;
    [all...]

Completed in 116 milliseconds