Home
last modified time | relevance | path

Searched refs:MachOConfig (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DMultiFormatConfig.h20 struct MachOConfig;
30 virtual Expected<const MachOConfig &> getMachOConfig() const = 0;
H A DConfigManager.h32 Expected<const MachOConfig &> getMachOConfig() const override;
39 MachOConfig MachO;
H A Dllvm-objcopy.cpp188 Expected<const MachOConfig &> MachOConfig = Config.getMachOConfig(); in executeObjcopyOnBinary() local
189 if (!MachOConfig) in executeObjcopyOnBinary()
190 return MachOConfig.takeError(); in executeObjcopyOnBinary()
192 return macho::executeObjcopyOnBinary(Config.getCommonConfig(), *MachOConfig, in executeObjcopyOnBinary()
H A DConfigManager.cpp590 Expected<const MachOConfig &> ConfigManager::getMachOConfig() const { in getMachOConfig()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.h23 struct MachOConfig;
27 Error executeObjcopyOnBinary(const CommonConfig &Config, const MachOConfig &,
H A DMachOConfig.h16 struct MachOConfig {}; struct
H A DMachOObjcopy.cpp377 const MachOConfig &, in executeObjcopyOnBinary() argument
458 Expected<const MachOConfig &> MachO = Config.getMachOConfig(); in executeObjcopyOnMachOUniversalBinary()