Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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;
43 MachOConfig MachO;
H A Dllvm-objcopy.cpp194 Expected<const MachOConfig &> MachOConfig = Config.getMachOConfig(); in executeObjcopyOnBinary() local
195 if (!MachOConfig) in executeObjcopyOnBinary()
196 return MachOConfig.takeError(); in executeObjcopyOnBinary()
198 return macho::executeObjcopyOnBinary(Config.getCommonConfig(), *MachOConfig, in executeObjcopyOnBinary()
H A DConfigManager.cpp611 Expected<const MachOConfig &> ConfigManager::getMachOConfig() const { in getMachOConfig()
/netbsd-src/external/apache2/llvm/dist/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.cpp374 Error executeObjcopyOnBinary(const CommonConfig &Config, const MachOConfig &, in executeObjcopyOnBinary() argument
454 Expected<const MachOConfig &> MachO = Config.getMachOConfig(); in executeObjcopyOnMachOUniversalBinary()