Home | History | Annotate | Download | only in Object

Lines Matching refs:pOutput

850 bool ObjectLinker::emitOutput(FileOutputBuffer& pOutput) {
851 return std::error_code() == getWriter()->writeObject(*m_pModule, pOutput);
855 bool ObjectLinker::postProcessing(FileOutputBuffer& pOutput) {
857 normalSyncRelocationResult(pOutput);
859 partialSyncRelocationResult(pOutput);
864 m_LDBackend.postProcessing(pOutput);
868 void ObjectLinker::normalSyncRelocationResult(FileOutputBuffer& pOutput) {
869 uint8_t* data = pOutput.getBufferStart();
927 void ObjectLinker::partialSyncRelocationResult(FileOutputBuffer& pOutput) {
928 uint8_t* data = pOutput.getBufferStart();
954 void ObjectLinker::writeRelocationResult(Relocation& pReloc, uint8_t* pOutput) {
960 uint8_t* target_addr = pOutput + out_offset;