HomeSort by relevance Sort by last modified time
    Searched defs:OatHeader (Results 1 - 2 of 2) sorted by null

  /art/runtime/
oat.h 30 class PACKED(4) OatHeader {
39 static OatHeader* Create(InstructionSet instruction_set,
108 OatHeader(InstructionSet instruction_set,
145 DISALLOW_COPY_AND_ASSIGN(OatHeader);
oat.cc 25 const uint8_t OatHeader::kOatMagic[] = { 'o', 'a', 't', '\n' };
26 const uint8_t OatHeader::kOatVersion[] = { '0', '3', '9', '\0' };
38 return sizeof(OatHeader) + estimate;
41 OatHeader* OatHeader::Create(InstructionSet instruction_set,
53 // Create the OatHeader in-place.
54 return new (memory) OatHeader(instruction_set,
62 OatHeader::OatHeader(InstructionSet instruction_set,
115 bool OatHeader::IsValid() const
    [all...]

Completed in 1510 milliseconds