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

/art/build/
H A DAndroid.oat.mk48 define create-core-oat-host-rules
133 $$(addprefix --dex-location=,$$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$$(PRIVATE_CORE_OAT_NAME) \
134 --oat-location=$$(PRIVATE_CORE_OAT_NAME) --image=$$(PRIVATE_CORE_IMG_NAME) \
149 endef # create-core-oat-host-rules
155 define create-core-oat-host-rule-combination
156 $(call create-core-oat-host-rules,$(1),no-pic,,$(2),$(3),$(4))
157 $(call create-core-oat-host-rules,$(1),pic,,$(2),$(3),$(4))
160 $(call create-core-oat-host-rules,$(1),no-pic,2ND_,$(2),$(3),$(4))
161 $(call create-core-oat-host-rules,$(1),pic,2ND_,$(2),$(3),$(4))
165 $(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.h50 bool oat; member in struct:art::LogVerbosity
/art/runtime/
H A Doat_file.cc42 #include "oat.h"
181 if (kIsTargetBuild && (kIsDebugBuild || VLOG_IS_ON(oat))) {
221 /*inout*/const uint8_t** oat,
223 DCHECK(oat != nullptr);
225 DCHECK_LE(*oat, oat_file.End());
226 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) {
231 *value = *reinterpret_cast<const unaligned_type*>(*oat);
232 *oat += sizeof(T);
239 *error_msg = StringPrintf("Invalid oat header for '%s': %s",
244 const uint8_t* oat local
220 ReadOatDexFileData(const OatFile& oat_file, const uint8_t** oat, T* value) argument
[all...]

Completed in 342 milliseconds