Searched defs:OatHeader (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Doat.h30 class PACKED(4) OatHeader {
40 static OatHeader* Create(InstructionSet instruction_set,
110 OatHeader(InstructionSet instruction_set,
147 DISALLOW_COPY_AND_ASSIGN(OatHeader); variable
H A Doat.cc25 const uint8_t OatHeader::kOatMagic[] = { 'o', 'a', 't', '\n' };
26 const uint8_t OatHeader::kOatVersion[] = { '0', '4', '5', '\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, function in class:art::OatHeader
115 bool OatHeader
[all...]

Completed in 77 milliseconds