Home | History | Annotate | Download | only in LD

Lines Matching refs:pOutput

52                                    FileOutputBuffer& pOutput,
69 region = pOutput.request(section->offset(), section->size());
120 FileOutputBuffer& pOutput) {
133 target().emitInterp(pOutput);
136 target().emitDynNamePools(pModule, pOutput);
141 target().emitRegNamePools(pModule, pOutput);
152 writeSection(pModule, pOutput, *sect);
159 writeSection(pModule, pOutput, *sect);
161 emitShStrTab(target().getOutputFormat()->getShStrTab(), pModule, pOutput);
166 writeELFHeader<32>(m_Config, pModule, pOutput);
168 emitProgramHeader<32>(pOutput);
170 emitSectionHeader<32>(pModule, m_Config, pOutput);
174 writeELFHeader<64>(m_Config, pModule, pOutput);
176 emitProgramHeader<64>(pOutput);
178 emitSectionHeader<64>(pModule, m_Config, pOutput);
205 FileOutputBuffer& pOutput) const {
211 MemoryRegion region = pOutput.request(0, sizeof(ElfXX_Ehdr));
300 FileOutputBuffer& pOutput) const {
307 pOutput.request(getLastStartOffset<SIZE>(pModule), header_size);
333 void ELFObjectWriter::emitProgramHeader(FileOutputBuffer& pOutput) const {
342 MemoryRegion region = pOutput.request(
366 FileOutputBuffer& pOutput) {
368 MemoryRegion region = pOutput.request(pShStrTab.offset(), pShStrTab.size());