Home | History | Annotate | Download | only in Object

Lines Matching refs:macho

112   unsigned HeaderSize = Is64Bit ? macho::Header64Size : macho::Header32Size;
135 void MachOObject::RegisterStringTable(macho::SymtabLoadCommand &SLC) {
157 sizeof(macho::LoadCommand));
170 void SwapStruct(macho::SegmentLoadCommand &Value) {
183 InMemoryStruct<macho::SegmentLoadCommand> &Res) const {
188 void SwapStruct(macho::Segment64LoadCommand &Value) {
201 InMemoryStruct<macho::Segment64LoadCommand> &Res) const {
206 void SwapStruct(macho::SymtabLoadCommand &Value) {
215 InMemoryStruct<macho::SymtabLoadCommand> &Res) const {
220 void SwapStruct(macho::DysymtabLoadCommand &Value) {
243 InMemoryStruct<macho::DysymtabLoadCommand> &Res) const {
248 void SwapStruct(macho::LinkeditDataLoadCommand &Value) {
255 InMemoryStruct<macho::LinkeditDataLoadCommand> &Res) const {
260 void SwapStruct(macho::IndirectSymbolTableEntry &Value) {
264 MachOObject::ReadIndirectSymbolTableEntry(const macho::DysymtabLoadCommand &DLC,
266 InMemoryStruct<macho::IndirectSymbolTableEntry> &Res) const {
268 Index * sizeof(macho::IndirectSymbolTableEntry));
274 void SwapStruct(macho::Section &Value) {
287 InMemoryStruct<macho::Section> &Res) const {
288 assert(LCI.Command.Type == macho::LCT_Segment &&
290 uint64_t Offset = (LCI.Offset + sizeof(macho::SegmentLoadCommand) +
291 Index * sizeof(macho::Section));
296 void SwapStruct(macho::Section64 &Value) {
310 InMemoryStruct<macho::Section64> &Res) const {
311 assert(LCI.Command.Type == macho::LCT_Segment64 &&
313 uint64_t Offset = (LCI.Offset + sizeof(macho::Segment64LoadCommand) +
314 Index * sizeof(macho::Section64));
319 void SwapStruct(macho::RelocationEntry &Value) {
325 InMemoryStruct<macho::RelocationEntry> &Res) const {
327 Index * sizeof(macho::RelocationEntry));
332 void SwapStruct(macho::SymbolTableEntry &Value) {
339 InMemoryStruct<macho::SymbolTableEntry> &Res) const {
341 Index * sizeof(macho::SymbolTableEntry));
346 void SwapStruct(macho::Symbol64TableEntry &Value) {
353 InMemoryStruct<macho::Symbol64TableEntry> &Res) const {
355 Index * sizeof(macho::Symbol64TableEntry));