HomeSort by relevance Sort by last modified time
    Searched defs:oat (Results 1 - 4 of 4) sorted by null

  /art/build/
Android.oat.mk 47 define create-core-oat-host-rules
108 $$(addprefix --dex-location=,$$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$$(PRIVATE_CORE_OAT_NAME) \
109 --oat-location=$$(PRIVATE_CORE_OAT_NAME) --image=$$(PRIVATE_CORE_IMG_NAME) \
124 endef # create-core-oat-host-rules
130 define create-core-oat-host-rule-combination
131 $(call create-core-oat-host-rules,$(1),,$(2),$(3),$(4))
134 $(call create-core-oat-host-rules,$(1),2ND_,$(2),$(3),$(4))
138 $(eval $(call create-core-oat-host-rule-combination,optimizing,,,false))
139 $(eval $(call create-core-oat-host-rule-combination,interpreter,,,false))
140 $(eval $(call create-core-oat-host-rule-combination,interp-ac,,,false)
    [all...]
  /art/dexlayout/
dexdiag_test.cc 58 // Open the core.oat file.
60 // get the location of the default core image (.../framework/core.oat),
61 // find it in the right architecture subdirectory (.../framework/arm/core.oat),
62 // Then, opening the oat file has the side-effect of opening the corresponding
70 std::unique_ptr<OatFile> oat(OatFile::Open(oat_location.c_str(),
78 EXPECT_TRUE(oat != nullptr) << error_msg;
79 return oat;
120 std::unique_ptr<OatFile> oat = OpenOatAndVdexFiles(); local
132 std::unique_ptr<OatFile> oat = OpenOatAndVdexFiles(); local
146 std::unique_ptr<OatFile> oat = OpenOatAndVdexFiles() local
    [all...]
  /art/runtime/base/
logging.h 48 bool oat; member in struct:art::LogVerbosity
  /art/runtime/
oat_file.cc 47 #include "oat.h"
219 if (kIsTargetBuild && (kIsDebugBuild || VLOG_IS_ON(oat))) {
264 /*inout*/const uint8_t** oat,
266 DCHECK(oat != nullptr);
268 DCHECK_LE(*oat, oat_file.End());
269 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) {
274 *value = *reinterpret_cast<const unaligned_type*>(*oat);
275 *oat += sizeof(T);
312 *error_msg = StringPrintf("Invalid oat header for '%s': %s",
321 *error_msg = StringPrintf("In oat file '%s' found truncated OatHeader,
340 const uint8_t* oat = Begin() + oat_dex_files_offset; \/\/ Jump to the OatDexFile records. local
    [all...]

Completed in 413 milliseconds