Lines Matching refs:Hdr
1581 MachO::mach_header_64 Hdr; in populateObjCRuntimeObject() local
1582 Hdr.magic = MachO::MH_MAGIC_64; in populateObjCRuntimeObject()
1585 Hdr.cputype = MachO::CPU_TYPE_ARM64; in populateObjCRuntimeObject()
1586 Hdr.cpusubtype = MachO::CPU_SUBTYPE_ARM64_ALL; in populateObjCRuntimeObject()
1589 Hdr.cputype = MachO::CPU_TYPE_X86_64; in populateObjCRuntimeObject()
1590 Hdr.cpusubtype = MachO::CPU_SUBTYPE_X86_64_ALL; in populateObjCRuntimeObject()
1596 Hdr.filetype = MachO::MH_DYLIB; in populateObjCRuntimeObject()
1597 Hdr.ncmds = 1 + !TextSections.empty(); in populateObjCRuntimeObject()
1598 Hdr.sizeofcmds = in populateObjCRuntimeObject()
1599 Hdr.ncmds * sizeof(MachO::segment_command_64) + in populateObjCRuntimeObject()
1601 Hdr.flags = 0; in populateObjCRuntimeObject()
1602 Hdr.reserved = 0; in populateObjCRuntimeObject()
1629 WriteMachOStruct(Hdr); in populateObjCRuntimeObject()