Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Doat_writer.h294 size_t InitOatHeader(uint32_t num_dex_files, SafeMap<std::string, std::string>* key_value_store);
Doat_writer.cc1982 size_t OatWriter::InitOatHeader(uint32_t num_dex_files, in InitOatHeader() argument
1991 num_dex_files, in InitOatHeader()
/art/runtime/gc/space/
Dimage_space.cc3544 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in GetBootClassPathChecksums() local
3546 CHECK_NE(num_dex_files, 0u); in GetBootClassPathChecksums()
3548 for (size_t i = 0; i != num_dex_files; ++i) { in GetBootClassPathChecksums()
3553 bcp_pos += num_dex_files; in GetBootClassPathChecksums()
3666 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in VerifyBootClassPathChecksums() local
3667 CHECK_NE(num_dex_files, 0u); in VerifyBootClassPathChecksums()
3672 for (size_t i = 1u; i != num_dex_files; ++i) { in VerifyBootClassPathChecksums()
/art/libprofile/profile/
Dprofile_compilation_info.cc1581 ProfileIndexType num_dex_files; in ReadDexFilesSection() local
1582 if (!buffer.ReadUintAndAdvance(&num_dex_files)) { in ReadDexFilesSection()
1586 if (num_dex_files >= MaxProfileIndex()) { in ReadDexFilesSection()
1592 for (ProfileIndexType i = 0u; i != num_dex_files; ++i) { in ReadDexFilesSection()
Dprofile_compilation_info_test.cc476 ProfileIndexType num_dex_files = 1u; in TEST_F() local
477 ASSERT_TRUE(profile.GetFile()->WriteFully(&num_dex_files, sizeof(num_dex_files))); in TEST_F()