Searched refs:executable (Results 1 – 7 of 7) sorted by relevance
/art/oatdump/ |
D | Android.mk | 22 include art/build/Android.executable.mk 25 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libcutils,,target,ndebug)) 28 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),libcutils,,target,debug)) 33 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),,,host,ndebug)) 36 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),,,host,debug))
|
/art/dex2oat/ |
D | Android.mk | 19 include art/build/Android.executable.mk 25 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler,art/comp… 28 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler,art/com… 34 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,… 37 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host…
|
/art/runtime/ |
D | oat_file.cc | 63 bool executable) { in Open() argument 72 if (executable) { in Open() 86 return OpenElfFile(file.get(), location, requested_base, false, executable); in Open() 109 bool executable) { in OpenElfFile() argument 111 bool success = oat_file->ElfFileOpen(file, requested_base, writable, executable); in OpenElfFile() 166 bool OatFile::ElfFileOpen(File* file, byte* requested_base, bool writable, bool executable) { in ElfFileOpen() argument 174 bool loaded = elf_file_->Load(executable); in ElfFileOpen()
|
D | oat_file.h | 48 bool executable); 228 bool executable); 232 bool ElfFileOpen(File* file, byte* requested_base, bool writable, bool executable);
|
D | elf_file.h | 118 bool Load(bool executable);
|
D | elf_file.cc | 599 bool ElfFile::Load(bool executable) { in Load() argument 643 if (executable && ((program_header.p_flags & llvm::ELF::PF_X) != 0)) { in Load()
|
/art/build/ |
D | Android.executable.mk | 33 define build-art-executable 95 LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.executable.mk
|