Home
last modified time | relevance | path

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

/art/runtime/
Dvdex_file.cc42 constexpr uint8_t VdexFile::VerifierDepsHeader::kDexSectionVersion[4]; member in art::VdexFile::VerifierDepsHeader
54 return (memcmp(dex_section_version_, kDexSectionVersion, sizeof(kDexSectionVersion)) == 0) || in IsDexSectionVersionValid()
59 return (memcmp(dex_section_version_, kDexSectionVersion, sizeof(kDexSectionVersion)) == 0); in HasDexSection()
70 memcpy(dex_section_version_, kDexSectionVersion, sizeof(kDexSectionVersion)); in VerifierDepsHeader()
Dvdex_file.h101 static constexpr uint8_t kDexSectionVersion[] = { '0', '0', '2', '\0' }; member