HomeSort by: relevance | last modified time | path
    Searched refs:ELFConfig (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
ELFObjcopy.h 23 struct ELFConfig;
27 const ELFConfig &ELFConfig, MemoryBuffer &In,
30 const ELFConfig &ELFConfig, MemoryBuffer &In,
33 const ELFConfig &ELFConfig,
ELFConfig.h 1 //===- ELFConfig.h ----------------------------------------------*- C++ -*-===//
30 struct ELFConfig {
ELFObjcopy.cpp 11 #include "ELFConfig.h"
510 static Error handleArgs(const CommonConfig &Config, const ELFConfig &ELFConfig,
636 if (!Obj.SymbolTable && !ELFConfig.SymbolsToAdd.empty())
640 for (const NewSymbolInfo &SI : ELFConfig.SymbolsToAdd) {
674 const ELFConfig &ELFConfig, MemoryBuffer &In,
683 if (Error E = handleArgs(Config, ELFConfig, **Obj))
689 const ELFConfig &ELFConfig, MemoryBuffer &In
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
MultiFormatConfig.h 18 struct ELFConfig;
28 virtual Expected<const ELFConfig &> getELFConfig() const = 0;
llvm-objcopy.cpp 14 #include "ELF/ELFConfig.h"
144 Expected<const ELFConfig &> ELFConfig = ConfigMgr.getELFConfig();
145 if (!ELFConfig)
146 return ELFConfig.takeError();
148 return elf::executeObjcopyOnIHex(ConfigMgr.getCommonConfig(), *ELFConfig, In,
165 Expected<const ELFConfig &> ELFConfig = ConfigMgr.getELFConfig();
166 if (!ELFConfig)
167 return ELFConfig.takeError()
    [all...]
ConfigManager.h 14 #include "ELF/ELFConfig.h"
30 Expected<const ELFConfig &> getELFConfig() const override;
41 mutable Optional<ELFConfig> ELF;
ConfigManager.cpp 550 Expected<const ELFConfig &> ConfigManager::getELFConfig() const {
557 ELFConfig ResConfig;

Completed in 57 milliseconds