Home
last modified time | relevance | path

Searched refs:num_dex_files (Results 1 – 5 of 5) sorted by relevance

/art/dex2oat/linker/
Doat_writer.h305 size_t InitOatHeader(uint32_t num_dex_files, SafeMap<std::string, std::string>* key_value_store);
Doat_writer.cc2110 size_t OatWriter::InitOatHeader(uint32_t num_dex_files, in InitOatHeader() argument
2119 num_dex_files, in InitOatHeader()
/art/runtime/gc/space/
Dimage_space.cc3660 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in GetBootClassPathChecksums() local
3662 CHECK_NE(num_dex_files, 0u); in GetBootClassPathChecksums()
3664 for (size_t i = 0; i != num_dex_files; ++i) { in GetBootClassPathChecksums()
3669 bcp_pos += num_dex_files; in GetBootClassPathChecksums()
3886 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in VerifyBootClassPathChecksums() local
3887 CHECK_NE(num_dex_files, 0u); in VerifyBootClassPathChecksums()
3892 for (size_t i = 1u; i != num_dex_files; ++i) { in VerifyBootClassPathChecksums()
/art/libprofile/profile/
Dprofile_compilation_info.cc1502 ProfileIndexType num_dex_files; in ReadDexFilesSection() local
1503 if (!buffer.ReadUintAndAdvance(&num_dex_files)) { in ReadDexFilesSection()
1507 if (num_dex_files >= MaxProfileIndex()) { in ReadDexFilesSection()
1513 for (ProfileIndexType i = 0u; i != num_dex_files; ++i) { in ReadDexFilesSection()
Dprofile_compilation_info_test.cc464 ProfileIndexType num_dex_files = 1u; in TEST_F() local
465 ASSERT_TRUE(profile.GetFile()->WriteFully(&num_dex_files, sizeof(num_dex_files))); in TEST_F()