Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Doat_writer.h295 size_t InitOatHeader(uint32_t num_dex_files, SafeMap<std::string, std::string>* key_value_store);
Doat_writer.cc1949 size_t OatWriter::InitOatHeader(uint32_t num_dex_files, in InitOatHeader() argument
1958 num_dex_files, in InitOatHeader()
/art/runtime/gc/space/
Dimage_space.cc3526 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in GetBootClassPathChecksums() local
3528 CHECK_NE(num_dex_files, 0u); in GetBootClassPathChecksums()
3530 for (size_t i = 0; i != num_dex_files; ++i) { in GetBootClassPathChecksums()
3535 bcp_pos += num_dex_files; in GetBootClassPathChecksums()
3647 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in VerifyBootClassPathChecksums() local
3648 CHECK_NE(num_dex_files, 0u); in VerifyBootClassPathChecksums()
3653 for (size_t i = 1u; i != num_dex_files; ++i) { in VerifyBootClassPathChecksums()
/art/libprofile/profile/
Dprofile_compilation_info.cc1616 ProfileIndexType num_dex_files; in ReadDexFilesSection() local
1617 if (!buffer.ReadUintAndAdvance(&num_dex_files)) { in ReadDexFilesSection()
1621 if (num_dex_files >= MaxProfileIndex()) { in ReadDexFilesSection()
1627 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()