Home | History | Annotate | Download | only in Object

Lines Matching refs:Sect

349     InMemoryStruct<macho::Section64> Sect;
350 MachOObj->ReadSection64(LCI, DRI.d.b, Sect);
352 strcpy(result, Sect->SegmentName);
354 strcat(result, Sect->Name);
359 InMemoryStruct<macho::Section> Sect;
360 MachOObj->ReadSection(LCI, DRI.d.b, Sect);
362 strcpy(result, Sect->SegmentName);
364 strcat(result, Sect->Name);
373 InMemoryStruct<macho::Section64> Sect;
374 getSection64(DRI, Sect);
375 Result = Sect->Address;
377 InMemoryStruct<macho::Section> Sect;
378 getSection(DRI, Sect);
379 Result = Sect->Address;
387 InMemoryStruct<macho::Section64> Sect;
388 getSection64(DRI, Sect);
389 Result = Sect->Size;
391 InMemoryStruct<macho::Section> Sect;
392 getSection(DRI, Sect);
393 Result = Sect->Size;
401 InMemoryStruct<macho::Section64> Sect;
402 getSection64(DRI, Sect);
403 Result = MachOObj->getData(Sect->Offset, Sect->Size);
405 InMemoryStruct<macho::Section> Sect;
406 getSection(DRI, Sect);
407 Result = MachOObj->getData(Sect->Offset, Sect->Size);
415 InMemoryStruct<macho::Section64> Sect;
416 getSection64(DRI, Sect);
417 Result = uint64_t(1) << Sect->Align;
419 InMemoryStruct<macho::Section> Sect;
420 getSection(DRI, Sect);
421 Result = uint64_t(1) << Sect->Align;
429 InMemoryStruct<macho::Section64> Sect;
430 getSection64(DRI, Sect);
431 Result = !strcmp(Sect->Name, "__text");
433 InMemoryStruct<macho::Section> Sect;
434 getSection(DRI, Sect);
435 Result = !strcmp(Sect->Name, "__text");
493 InMemoryStruct<macho::Section64> Sect;
494 getSection64(Sec, Sect);
495 last_reloc = Sect->NumRelocationTableEntries;
497 InMemoryStruct<macho::Section> Sect;
498 getSection(Sec, Sect);
499 last_reloc = Sect->NumRelocationTableEntries;
528 InMemoryStruct<macho::Section64> Sect;
529 getSection64(Sections[Rel.d.b], Sect);
530 relOffset = Sect->RelocationTableOffset;
532 InMemoryStruct<macho::Section> Sect;
533 getSection(Sections[Rel.d.b], Sect);
534 relOffset = Sect->RelocationTableOffset;
548 InMemoryStruct<macho::Section64> Sect;
549 getSection64(Sections[Rel.d.b], Sect);
550 sectAddress += Sect->Offset;
552 InMemoryStruct<macho::Section> Sect;
553 getSection(Sections[Rel.d.b], Sect);
554 sectAddress += Sect->Offset;
602 InMemoryStruct<macho::Section64> Sect;
603 getSection64(Sections[Rel.d.b], Sect);
604 sectAddress += Sect->Offset;
606 InMemoryStruct<macho::Section> Sect;
607 getSection(Sections[Rel.d.b], Sect);
608 sectAddress += Sect->Offset;