Home | History | Annotate | Download | only in libdex

Lines Matching full:magic

276     // magic is ok
2782 * Start by verifying the magic number. The caller verified that "len"
2786 if (memcmp(pHeader->magic, DEX_MAGIC, 4) != 0) {
2788 LOGE("ERROR: Can't byte swap: bad magic number "
2790 pHeader->magic[0], pHeader->magic[1],
2791 pHeader->magic[2], pHeader->magic[3]);
2795 if (okay && memcmp(pHeader->magic+4, DEX_MAGIC_VERS, 4) != 0) {
2799 pHeader->magic[4], pHeader->magic[5],
2800 pHeader->magic[6], pHeader->magic[7]);
2827 const int nonSum = sizeof(pHeader->magic) + sizeof(pHeader->checksum);