Searched refs:Config (Results 1 - 25 of 128) sorted by relevance

123456

/netbsd-current/crypto/external/bsd/openssl.old/dist/Configurations/
H A Dunix-checker.pm3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
H A Dwindows-checker.pm3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
/netbsd-current/crypto/external/bsd/openssl/dist/Configurations/
H A Dwindows-checker.pm3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
H A Dunix-checker.pm3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
/netbsd-current/tools/llvm-lib/libLLVMSupport/
H A DMakefile3 CPPFLAGS.Signals.cpp+= -include llvm/Config/config.h
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp136 static std::unique_ptr<Writer> createELFWriter(const CommonConfig &Config, argument
142 return std::make_unique<ELFWriter<ELF32LE>>(Obj, Out, !Config.StripSections,
143 Config.OnlyKeepDebug);
145 return std::make_unique<ELFWriter<ELF64LE>>(Obj, Out, !Config.StripSections,
146 Config.OnlyKeepDebug);
148 return std::make_unique<ELFWriter<ELF32BE>>(Obj, Out, !Config.StripSections,
149 Config.OnlyKeepDebug);
151 return std::make_unique<ELFWriter<ELF64BE>>(Obj, Out, !Config.StripSections,
152 Config.OnlyKeepDebug);
157 static std::unique_ptr<Writer> createWriter(const CommonConfig &Config, argument
247 updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj) argument
342 replaceAndRemoveSections(const CommonConfig &Config, Object &Obj) argument
510 handleArgs(const CommonConfig &Config, const ELFConfig &ELFConfig, Object &Obj) argument
664 writeOutput(const CommonConfig &Config, Object &Obj, raw_ostream &Out, ElfType OutputElfType) argument
673 executeObjcopyOnIHex(const CommonConfig &Config, const ELFConfig &ELFConfig, MemoryBuffer &In, raw_ostream &Out) argument
688 executeObjcopyOnRawBinary(const CommonConfig &Config, const ELFConfig &ELFConfig, MemoryBuffer &In, raw_ostream &Out) argument
707 executeObjcopyOnBinary(const CommonConfig &Config, const ELFConfig &ELFConfig, object::ELFObjectFileBase &In, raw_ostream &Out) argument
[all...]
H A DELFObjcopy.h26 Error executeObjcopyOnIHex(const CommonConfig &Config,
29 Error executeObjcopyOnRawBinary(const CommonConfig &Config,
32 Error executeObjcopyOnBinary(const CommonConfig &Config,
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DCOFFObjcopy.cpp134 static Error handleArgs(const CommonConfig &Config, Object &Obj) { argument
136 Obj.removeSections([&Config](const Section &Sec) {
139 if (!Config.OnlySection.empty() && !Config.OnlySection.matches(Sec.Name))
142 if (Config.StripDebug || Config.StripAll || Config.StripAllGNU ||
143 Config.DiscardMode == DiscardType::All || Config.StripUnneeded) {
149 if (Config
255 executeObjcopyOnBinary(const CommonConfig &Config, const COFFConfig &, COFFObjectFile &In, raw_ostream &Out) argument
[all...]
H A DCOFFObjcopy.h26 Error executeObjcopyOnBinary(const CommonConfig &Config, const COFFConfig &,
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp156 const CommonConfig &Config = ConfigMgr.getCommonConfig(); local
157 switch (Config.OutputFormat) {
169 return elf::executeObjcopyOnRawBinary(Config, *ELFConfig, In, Out);
177 static Error executeObjcopyOnBinary(const MultiFormatConfig &Config, argument
180 Expected<const ELFConfig &> ELFConfig = Config.getELFConfig();
184 return elf::executeObjcopyOnBinary(Config.getCommonConfig(), *ELFConfig,
187 Expected<const COFFConfig &> COFFConfig = Config.getCOFFConfig();
191 return coff::executeObjcopyOnBinary(Config.getCommonConfig(), *COFFConfig,
194 Expected<const MachOConfig &> MachOConfig = Config.getMachOConfig();
198 return macho::executeObjcopyOnBinary(Config
220 createNewArchiveMembers(const MultiFormatConfig &Config, const Archive &Ar) argument
264 const CommonConfig &Config = ConfigMgr.getCommonConfig(); local
274 const CommonConfig &Config = ConfigMgr.getCommonConfig(); local
321 CommonConfig &Config = ConfigMgr.Common; local
[all...]
H A DConfigManager.cpp707 CommonConfig &Config = ConfigMgr.Common; local
708 Config.InputFilename = Positional[0];
709 Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1];
741 Config.InputFormat = StringSwitch<FileFormat>(InputFormat)
750 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat)
754 if (Config.OutputFormat == FileFormat::Unspecified) {
756 Config.OutputFormat = Config.InputFormat;
762 Config.OutputFormat = Target->Format;
763 Config
1061 CommonConfig &Config = ConfigMgr.Common; local
1193 CommonConfig &Config = ConfigMgr.Common; local
1285 CommonConfig &Config = ConfigMgr.Common; local
[all...]
H A Dllvm-objcopy.h28 createNewArchiveMembers(const MultiFormatConfig &Config,
/netbsd-current/external/apache2/llvm/autoconf/
H A Drun-autoconf4 rm -rf autom4te.cache autoconf/autom4te.cache include/llvm/Config/config.h.in~
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.h27 Error executeObjcopyOnBinary(const CommonConfig &Config, const MachOConfig &,
31 const MultiFormatConfig &Config, const object::MachOUniversalBinary &In,
H A DMachOObjcopy.cpp52 static Error removeSections(const CommonConfig &Config, Object &Obj) { argument
57 if (!Config.ToRemove.empty()) {
58 RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {
59 return Config.ToRemove.matches(Sec->CanonicalName);
63 if (Config.StripAll || Config.StripDebug) {
73 if (!Config.OnlySection.empty()) {
75 RemovePred = [&Config](const std::unique_ptr<Section> &Sec) {
76 return !Config.OnlySection.matches(Sec->CanonicalName);
90 static void updateAndRemoveSymbols(const CommonConfig &Config, Objec argument
140 processLoadCommands(const CommonConfig &Config, Object &Obj) argument
334 handleArgs(const CommonConfig &Config, Object &Obj) argument
374 executeObjcopyOnBinary(const CommonConfig &Config, const MachOConfig &, object::MachOObjectFile &In, raw_ostream &Out) argument
403 executeObjcopyOnMachOUniversalBinary(const MultiFormatConfig &Config, const MachOUniversalBinary &In, raw_ostream &Out) argument
[all...]
/netbsd-current/external/bsd/nsd/dist/contrib/bind2nsd/
H A Dset_version39 CONFIGV=$(grep -i version bind2nsd/Config.py | sed "s/'version'//" | \
41 echo "bind2nsd/Config.py is currently => ${CONFIGV}"
48 "s/[ \t]*'version'[ \t]*: '${CONFIGV}',/ 'version' : '${NEWV}',/" bind2nsd/Config.py
55 CONFIGV=$(grep -i version bind2nsd/Config.py | sed "s/'version'//" | \
57 echo "bind2nsd/Config.py is now => ${CONFIGV}"
H A Dchk_version31 CONFIGV=$(grep -i version bind2nsd/Config.py | sed "s/'version'//" | \
33 echo "bind2nsd/Config.py => ${CONFIGV}"
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h73 PrinterConfig Config; member in class:llvm::symbolize::PlainPrinterBase
88 PlainPrinterBase(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) argument
89 : DIPrinter(), OS(OS), ES(ES), Config(Config) {}
113 LLVMPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) argument
114 : PlainPrinterBase(OS, ES, Config) {}
122 GNUPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) argument
123 : PlainPrinterBase(OS, ES, Config) {}
129 PrinterConfig Config; member in class:llvm::symbolize::JSONPrinter
133 json::OStream JOS(OS, Config
139 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
H A DWasmObjcopy.cpp42 static Error handleArgs(const CommonConfig &Config, Object &Obj) { argument
44 for (StringRef Flag : Config.DumpSection) {
52 Obj.removeSections([&Config](const Section &Sec) {
53 if (Config.ToRemove.matches(Sec.Name))
58 for (StringRef Flag : Config.AddSection) {
78 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &, argument
83 return createFileError(Config.InputFilename, ObjOrErr.takeError());
86 if (Error E = handleArgs(Config, *Obj))
90 return createFileError(Config.OutputFilename, std::move(E));
H A DWasmObjcopy.h25 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &,
/netbsd-current/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_file.py2 from clang.cindex import Config namespace
4 Config.set_library_path(os.environ['CLANG_LIBRARY_PATH'])
H A Dtest_access_specifiers.py2 from clang.cindex import Config namespace
4 Config.set_library_path(os.environ['CLANG_LIBRARY_PATH'])
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h44 #include "llvm/LTO/Config.h"
92 Config.RelocModel = Model;
97 void setFileType(CodeGenFileType FT) { Config.CGFileType = FT; }
99 void setCpu(StringRef MCpu) { Config.CPU = std::string(MCpu); }
100 void setAttrs(std::vector<std::string> MAttrs) { Config.MAttrs = MAttrs; }
183 void setFreestanding(bool Enabled) { Config.Freestanding = Enabled; }
185 void setDisableVerify(bool Value) { Config.DisableVerify = Value; }
187 void setUseNewPM(bool Value) { Config.UseNewPM = Value; }
241 lto::Config Config; member in struct:llvm::LTOCodeGenerator
[all...]
/netbsd-current/external/bsd/nsd/dist/contrib/bind2nsd/scripts/
H A Ds64-mkpw36 if os.path.exists('../bind2nsd/Config.py'):
38 from Config import *
40 from bind2nsd.Config import *
47 conf = Config()
/netbsd-current/sys/external/bsd/compiler_rt/dist/include/xray/
H A Dxray_log_interface.h291 XRayLogInitStatus __xray_log_init_mode(const char *Mode, const char *Config);
297 XRayLogInitStatus __xray_log_init_mode_bin(const char *Mode, const char *Config,

Completed in 312 milliseconds

123456