Home
last modified time | relevance | path

Searched refs:kDexSectionVersion (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dvdex_file.cc49 constexpr uint8_t VdexFile::VerifierDepsHeader::kDexSectionVersion[4]; member in art::VdexFile::VerifierDepsHeader
61 return (memcmp(dex_section_version_, kDexSectionVersion, sizeof(kDexSectionVersion)) == 0) || in IsDexSectionVersionValid()
66 return (memcmp(dex_section_version_, kDexSectionVersion, sizeof(kDexSectionVersion)) == 0); in HasDexSection()
81 memcpy(dex_section_version_, kDexSectionVersion, sizeof(kDexSectionVersion)); in VerifierDepsHeader()
Dvdex_file.h123 static constexpr uint8_t kDexSectionVersion[] = { '0', '0', '2', '\0' }; member