Searched defs:oat (Results 1 - 4 of 4) sorted by relevance

/art/build/
H A DAndroid.oat.mk41 define create-core-oat-host-rules
112 $$(addprefix --dex-location=,$$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$$(PRIVATE_CORE_OAT_NAME) \
113 --oat-location=$$(PRIVATE_CORE_OAT_NAME) --image=$$(PRIVATE_CORE_IMG_NAME) \
128 endef # create-core-oat-host-rules
133 define create-core-oat-host-rule-combination
134 $(call create-core-oat-host-rules,$(1),no-pic,,$(2),$(3))
135 $(call create-core-oat-host-rules,$(1),pic,,$(2),$(3))
138 $(call create-core-oat-host-rules,$(1),no-pic,2ND_,$(2),$(3))
139 $(call create-core-oat-host-rules,$(1),pic,2ND_,$(2),$(3))
143 $(eval $(call create-core-oat
[all...]
/art/
H A DAndroid.mk22 # clean-oat rules
26 include $(art_path)/build/Android.oat.mk
30 ifneq (,$(filter clean-oat%,$(MAKECMDGOALS)))
40 .PHONY: clean-oat
41 clean-oat: clean-oat-host clean-oat-target
43 .PHONY: clean-oat-host
44 clean-oat-host:
45 find $(OUT_DIR) -name "*.oat"
[all...]
/art/runtime/base/
H A Dlogging.h48 bool oat; member in struct:art::LogVerbosity
/art/runtime/
H A Doat_file.cc40 #include "oat.h"
119 // this will register the oat file with the linker and allows libunwind to find our info.
140 // Another independent reason is the absolute placement of boot.oat. dlopen on the host usually
144 *error_msg = StringPrintf("Failed to open oat filename for reading: %s", strerror(errno));
383 *error_msg = StringPrintf("Invalid oat header for '%s': %s", GetLocation().c_str(),
387 const uint8_t* oat = Begin(); local
388 oat += sizeof(OatHeader);
389 if (oat > End()) {
390 *error_msg = StringPrintf("In oat file '%s' found truncated OatHeader", GetLocation().c_str());
394 oat
[all...]

Completed in 96 milliseconds