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

  /art/runtime/
runtime.cc 655 const char* dex_filename = dex_filenames[i].c_str(); local
657 if (!OS::FileExists(dex_filename)) {
658 LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'";
661 if (!DexFile::Open(dex_filename, dex_filename, &error_msg, &dex_files)) {
662 LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg;
    [all...]
class_linker.h 275 bool GenerateOatFile(const char* dex_filename,
    [all...]
class_linker.cc 605 bool ClassLinker::GenerateOatFile(const char* dex_filename,
618 "without an image.", dex_filename);
624 dex_file_option += dex_filename;
    [all...]
  /art/dex2oat/
dex2oat.cc 599 const char* dex_filename = dex_filenames[i]; local
603 if (!OS::FileExists(dex_filename)) {
604 LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'";
607 if (!DexFile::Open(dex_filename, dex_location, &error_msg, &dex_files)) {
608 LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg;
    [all...]

Completed in 47 milliseconds