Lines Matching refs:region
54 MemoryRegion region; in writeSection() local
69 region = pOutput.request(section->offset(), section->size()); in writeSection()
70 if (region.size() == 0) { in writeSection()
97 emitSectionData(*section, region); in writeSection()
100 emitEhFrame(pModule, *section->getEhFrame(), region); in writeSection()
106 emitRelocation(m_Config, *section, region); in writeSection()
109 target().emitSectionData(*section, region); in writeSection()
112 section->getDebugString()->emit(region); in writeSection()
211 MemoryRegion region = pOutput.request(0, sizeof(ElfXX_Ehdr)); in writeELFHeader() local
212 ElfXX_Ehdr* header = reinterpret_cast<ElfXX_Ehdr*>(region.begin()); in writeELFHeader()
306 MemoryRegion region = in emitSectionHeader() local
308 ElfXX_Shdr* shdr = reinterpret_cast<ElfXX_Shdr*>(region.begin()); in emitSectionHeader()
342 MemoryRegion region = pOutput.request( in emitProgramHeader() local
345 ElfXX_Phdr* phdr = reinterpret_cast<ElfXX_Phdr*>(region.begin()); in emitProgramHeader()
368 MemoryRegion region = pOutput.request(pShStrTab.offset(), pShStrTab.size()); in emitShStrTab() local
369 char* data = reinterpret_cast<char*>(region.begin()); in emitShStrTab()