/art/oatdump/ |
D | Android.mk | 19 .PHONY: dump-oat 20 dump-oat: dump-oat-boot
|
/art/dexlayout/ |
D | dexdiag_test.cc | 66 std::unique_ptr<OatFile> oat(OatFile::Open(/*zip_fd=*/ -1, in OpenOatAndVdexFiles() local 72 EXPECT_TRUE(oat != nullptr) << error_msg; in OpenOatAndVdexFiles() 73 return oat; in OpenOatAndVdexFiles() 114 std::unique_ptr<OatFile> oat = OpenOatAndVdexFiles(); local 126 std::unique_ptr<OatFile> oat = OpenOatAndVdexFiles(); local 140 std::unique_ptr<OatFile> oat = OpenOatAndVdexFiles(); local
|
/art/runtime/gc/space/ |
D | image_space_test.cc | 246 std::unique_ptr<OatFile> oat(OatFile::Open(/*zip_fd=*/ -1, in TEST_F() local 252 ASSERT_TRUE(oat != nullptr) << error_msg; in TEST_F() 269 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F() 273 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F() 277 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F() 281 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F() 285 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F() 289 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F() 293 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F() 297 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F() [all …]
|
/art/tools/ |
D | compile-jar.sh | 38 …$(${ANDROID_BUILD_TOP}/art/tools/host_bcp.sh ${OUT}/system/framework/oat/${ISA}/services.odex --us… 40 --oat-file=${OUTPUT} \
|
D | art | 130 # Delete the 'oat' directories relative to the classpath's dex files. 200 verbose_run mkdir -p $(dirname "$dex_file")/oat/$ISA 202 local oat_file=$(dirname "$dex_file")/oat/$ISA/${oat_file%.*}.odex 205 local art_file=$(dirname "$dex_file")/oat/$ISA/${art_file%.*}.art 227 --oat-file=$oat_file
|
/art/runtime/ |
D | oat_file_assistant.cc | 154 VLOG(oat) << "Dex parent of " << dex_location_ << " is not writable: " << strerror(errno); in OatFileAssistant() 173 VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path"; in IsInBootClassPath() 377 VLOG(oat) << "Dex checksum does not match for dex: " << dex in DexChecksumUpToDate() 411 VLOG(oat) << "Oat image checksum does not match image checksum."; in GivenOatFileStatus() 415 VLOG(oat) << "Image checksum test skipped for compiler filter " << current_compiler_filter; in GivenOatFileStatus() 577 VLOG(oat) << "OatFileAssistant: " << error_msg; in GetRequiredDexChecksums() 627 VLOG(oat) << "Failed to verify checksums of oat file " << oat_file.GetLocation() in ValidateBootClassPathChecksums() 750 VLOG(oat) << "unable to open vdex file " << vdex_filename << ": " << error_msg; in Status() 756 VLOG(oat) << error_msg; in Status() 764 VLOG(oat) << file->GetLocation() << " is " << status_ in Status() [all …]
|
D | oat_file.cc | 407 /*inout*/const uint8_t** oat, in ReadOatDexFileData() argument 409 DCHECK(oat != nullptr); in ReadOatDexFileData() 411 DCHECK_LE(*oat, oat_file.End()); in ReadOatDexFileData() 412 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) { in ReadOatDexFileData() 417 *value = *reinterpret_cast<const unaligned_type*>(*oat); in ReadOatDexFileData() 418 *oat += sizeof(T); in ReadOatDexFileData() 423 /*inout*/const uint8_t** oat, in ReadIndexBssMapping() argument 430 if (UNLIKELY(!ReadOatDexFileData(*oat_file, oat, &index_bss_mapping_offset))) { in ReadIndexBssMapping() 522 const uint8_t* oat = Begin() + oat_dex_files_offset; // Jump to the OatDexFile records. in Setup() local 579 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_location_size))) { in Setup() [all …]
|
/art/test/004-ThreadStress/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-ReferenceMap/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-SignalTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-InterfaceTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-StackWalk/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-NativeAllocations/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-JniTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/116-nodex2oat/ |
D | expected.txt | 2 Has oat is false.
|
/art/test/677-fsi2/ |
D | run | 17 ${RUN} $@ --runtime-option -Xonly-use-system-oat-files
|
D | info.txt | 1 Test that -Xonly-use-system-oat-files works.
|
/art/test/001-HelloWorld/ |
D | info.txt | 1 Imported from oat test. Print "Hello World."
|
/art/test/114-ParallelGC/ |
D | info.txt | 1 Imported from oat tests. Allocates and frees objects with multiple threads.
|
/art/test/677-fsi/ |
D | expected.txt | 1 oat file has dex code, but APK has uncompressed dex code
|
D | run | 19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-fil…
|
/art/test/001-Main/ |
D | info.txt | 1 Import of a previous oat test. Empty main, just test starting up the runtime.
|
/art/test/661-oat-writer-layout/ |
D | Android.bp | 3 name: "art-run-test-661-oat-writer-layout",
|
/art/ |
D | Android.mk | 27 .PHONY: clean-oat 28 clean-oat: clean-oat-host clean-oat-target 30 .PHONY: clean-oat-host 31 clean-oat-host: 36 .PHONY: clean-oat-target 37 clean-oat-target:
|
/art/libartbase/base/ |
D | logging.h | 49 bool oat; member
|