Lines Matching refs:ELFConfig
138 Expected<const ELFConfig &> ELFConfig = ConfigMgr.getELFConfig(); in executeObjcopyOnIHex() local
139 if (!ELFConfig) in executeObjcopyOnIHex()
140 return ELFConfig.takeError(); in executeObjcopyOnIHex()
142 return elf::executeObjcopyOnIHex(ConfigMgr.getCommonConfig(), *ELFConfig, In, in executeObjcopyOnIHex()
159 Expected<const ELFConfig &> ELFConfig = ConfigMgr.getELFConfig(); in executeObjcopyOnRawBinary() local
160 if (!ELFConfig) in executeObjcopyOnRawBinary()
161 return ELFConfig.takeError(); in executeObjcopyOnRawBinary()
163 return elf::executeObjcopyOnRawBinary(Config, *ELFConfig, In, Out); in executeObjcopyOnRawBinary()
174 Expected<const ELFConfig &> ELFConfig = Config.getELFConfig(); in executeObjcopyOnBinary() local
175 if (!ELFConfig) in executeObjcopyOnBinary()
176 return ELFConfig.takeError(); in executeObjcopyOnBinary()
178 return elf::executeObjcopyOnBinary(Config.getCommonConfig(), *ELFConfig, in executeObjcopyOnBinary()