Searched refs:VDEX_MAGIC (Results 1 – 1 of 1) sorted by relevance
29 private static final byte[] VDEX_MAGIC = {(byte) 'v', (byte) 'd', (byte) 'e', (byte) 'x'}; field in VdexParser74 if (buffer[0] != VDEX_MAGIC[0] in parse()75 || buffer[1] != VDEX_MAGIC[1] in parse()76 || buffer[2] != VDEX_MAGIC[2] in parse()77 || buffer[3] != VDEX_MAGIC[3]) { in parse()