Lines Matching refs:ConfigMgr
100 static Error executeObjcopyOnIHex(ConfigManager &ConfigMgr, MemoryBuffer &In, in executeObjcopyOnIHex() argument
103 Expected<const ELFConfig &> ELFConfig = ConfigMgr.getELFConfig(); in executeObjcopyOnIHex()
107 return elf::executeObjcopyOnIHex(ConfigMgr.getCommonConfig(), *ELFConfig, In, in executeObjcopyOnIHex()
113 static Error executeObjcopyOnRawBinary(ConfigManager &ConfigMgr, in executeObjcopyOnRawBinary() argument
115 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in executeObjcopyOnRawBinary()
125 Expected<const ELFConfig &> ELFConfig = ConfigMgr.getELFConfig(); in executeObjcopyOnRawBinary()
138 static Error executeObjcopy(ConfigManager &ConfigMgr) { in executeObjcopy() argument
139 CommonConfig &Config = ConfigMgr.Common; in executeObjcopy()
162 return executeObjcopyOnRawBinary(ConfigMgr, *MemoryBufferHolder, in executeObjcopy()
168 return executeObjcopyOnIHex(ConfigMgr, *MemoryBufferHolder, OutFile); in executeObjcopy()
179 if (Error E = executeObjcopyOnArchive(ConfigMgr, *Ar)) in executeObjcopy()
184 return executeObjcopyOnBinary(ConfigMgr, *BinaryHolder.getBinary(), in executeObjcopy()
250 for (ConfigManager &ConfigMgr : DriverConfig->CopyConfigs) { in llvm_objcopy_main()
251 if (Error E = executeObjcopy(ConfigMgr)) { in llvm_objcopy_main()