Lines Matching refs:pOutput
786 bool ObjectLinker::emitOutput(FileOutputBuffer& pOutput) in emitOutput() argument
788 return std::error_code() == getWriter()->writeObject(*m_pModule, pOutput); in emitOutput()
793 bool ObjectLinker::postProcessing(FileOutputBuffer& pOutput) in postProcessing() argument
796 normalSyncRelocationResult(pOutput); in postProcessing()
798 partialSyncRelocationResult(pOutput); in postProcessing()
803 m_LDBackend.postProcessing(pOutput); in postProcessing()
807 void ObjectLinker::normalSyncRelocationResult(FileOutputBuffer& pOutput) in normalSyncRelocationResult() argument
809 uint8_t* data = pOutput.getBufferStart(); in normalSyncRelocationResult()
860 void ObjectLinker::partialSyncRelocationResult(FileOutputBuffer& pOutput) in partialSyncRelocationResult() argument
862 uint8_t* data = pOutput.getBufferStart(); in partialSyncRelocationResult()
888 void ObjectLinker::writeRelocationResult(Relocation& pReloc, uint8_t* pOutput) in writeRelocationResult() argument
895 uint8_t* target_addr = pOutput + out_offset; in writeRelocationResult()