Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Doat_writer.h304 size_t InitOatHeader(uint32_t num_dex_files, SafeMap<std::string, std::string>* key_value_store);
Doat_writer.cc2068 size_t OatWriter::InitOatHeader(uint32_t num_dex_files, in InitOatHeader() argument
2077 num_dex_files, in InitOatHeader()
/art/runtime/gc/space/
Dimage_space.cc3357 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in GetBootClassPathChecksums() local
3359 CHECK_NE(num_dex_files, 0u); in GetBootClassPathChecksums()
3361 for (size_t i = 0; i != num_dex_files; ++i) { in GetBootClassPathChecksums()
3366 bcp_pos += num_dex_files; in GetBootClassPathChecksums()
3567 size_t num_dex_files = oat_file->GetOatDexFiles().size(); in VerifyBootClassPathChecksums() local
3568 CHECK_NE(num_dex_files, 0u); in VerifyBootClassPathChecksums()
3573 for (size_t i = 1u; i != num_dex_files; ++i) { in VerifyBootClassPathChecksums()
/art/libprofile/profile/
Dprofile_compilation_info.cc1497 ProfileIndexType num_dex_files; in ReadDexFilesSection() local
1498 if (!buffer.ReadUintAndAdvance(&num_dex_files)) { in ReadDexFilesSection()
1502 if (num_dex_files >= MaxProfileIndex()) { in ReadDexFilesSection()
1508 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()