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

/art/build/
H A DAndroid.oat.mk28 define create-core-oat-host-rules
34 $$(addprefix --dex-location=,$$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)HOST_CORE_OAT_OUT) \
35 --oat-location=$$($(1)HOST_CORE_OAT) --image=$$($(1)HOST_CORE_IMG_OUT) \
44 endef # create-core-oat-host-rules
46 $(eval $(call create-core-oat-host-rules,))
48 $(eval $(call create-core-oat-host-rules,2ND_))
51 define create-core-oat-target-rules
57 $$(addprefix --dex-location=,$$(TARGET_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)TARGET_CORE_OAT_OUT) \
58 --oat-location=$$($(1)TARGET_CORE_OAT) --image=$$($(1)TARGET_CORE_IMG_OUT) \
67 endef # create-core-oat
[all...]
/art/
H A DAndroid.mk22 # clean-oat rules
28 ifneq (,$(filter clean-oat,$(MAKECMDGOALS)))
31 ifneq (,$(filter clean-oat-host,$(MAKECMDGOALS)))
34 ifneq (,$(filter clean-oat-target,$(MAKECMDGOALS)))
38 .PHONY: clean-oat
39 clean-oat: clean-oat-host clean-oat-target
41 .PHONY: clean-oat-host
42 clean-oat
[all...]
/art/runtime/
H A Doat_file.cc29 #include "oat.h"
91 *error_msg = StringPrintf("Failed to open oat filename for reading: %s", strerror(errno));
227 *error_msg = StringPrintf("Invalid oat magic for '%s'", GetLocation().c_str());
230 const byte* oat = Begin(); local
231 oat += sizeof(OatHeader);
232 if (oat > End()) {
233 *error_msg = StringPrintf("In oat file '%s' found truncated OatHeader", GetLocation().c_str());
237 oat += GetOatHeader().GetKeyValueStoreSize();
238 if (oat > End()) {
239 *error_msg = StringPrintf("In oat fil
[all...]

Completed in 407 milliseconds