Searched refs:android_root (Results 1 – 13 of 13) sorted by relevance
/art/compiler/ |
D | elf_writer_mclinker.cc | 57 const std::string& android_root, in Create() argument 61 return elf_writer.Write(oat_writer, dex_files, android_root, is_host); in Create() 66 const std::string& android_root, in Write() argument 78 AddRuntimeInputs(android_root, is_host); in Write() 278 void ElfWriterMclinker::AddRuntimeInputs(const std::string& android_root, bool is_host) { in AddRuntimeInputs() argument 279 std::string libart_so(android_root); in AddRuntimeInputs() 292 compiler_runtime_lib += android_root; in AddRuntimeInputs() 305 libc_lib += android_root; in AddRuntimeInputs() 317 libm_lib += android_root; in AddRuntimeInputs()
|
D | elf_writer_mclinker.h | 46 const std::string& android_root, 54 const std::string& android_root, 67 void AddRuntimeInputs(const std::string& android_root, bool is_host);
|
D | elf_writer.h | 56 const std::string& android_root,
|
D | compilers.cc | 95 const std::string& android_root, in WriteElf() argument 97 return art::ElfWriterQuick::Create(file, oat_writer, dex_files, android_root, is_host, in WriteElf()
|
D | compiler.cc | 140 const std::string& android_root, in WriteElf() argument 145 file, oat_writer, dex_files, android_root, is_host, driver); in WriteElf()
|
D | compilers.h | 50 const std::string& android_root,
|
D | compiler.h | 76 const std::string& android_root,
|
D | elf_writer_quick.h | 32 const std::string& android_root, 40 const std::string& android_root,
|
D | elf_writer_quick.cc | 884 const std::string& android_root, in Create() argument 888 return elf_writer.Write(oat_writer, dex_files, android_root, is_host); in Create()
|
/art/runtime/ |
D | utils.cc | 1160 const char* android_root = getenv("ANDROID_ROOT"); in GetAndroidRoot() local 1161 if (android_root == NULL) { in GetAndroidRoot() 1163 android_root = "/system"; in GetAndroidRoot() 1169 if (!OS::DirectoryExists(android_root)) { in GetAndroidRoot() 1170 LOG(FATAL) << "Failed to find ANDROID_ROOT directory " << android_root; in GetAndroidRoot() 1173 return android_root; in GetAndroidRoot()
|
/art/dex2oat/ |
D | dex2oat.cc | 354 const std::string& android_root, in CreateOatFile() argument 437 if (!driver->WriteElf(android_root, is_host, dex_files, &oat_writer, oat_file)) { in CreateOatFile() 868 std::string android_root; in dex2oat() local 982 android_root = option.substr(strlen("--android-root=")).data(); in dex2oat() 1132 if (android_root.empty()) { in dex2oat() 1137 android_root += android_root_env_var; in dex2oat() 1142 boot_image_filename += android_root; in dex2oat() 1542 android_root, in dex2oat()
|
/art/compiler/driver/ |
D | compiler_driver.h | 393 bool WriteElf(const std::string& android_root,
|
D | compiler_driver.cc | 2221 bool CompilerDriver::WriteElf(const std::string& android_root, in WriteElf() argument 2227 return compiler_->WriteElf(file, oat_writer, dex_files, android_root, is_host); in WriteElf()
|