| /netbsd-src/external/gpl3/binutils/dist/gold/ |
| H A D | plugin.h | 54 class Plugin 57 Plugin(const char* filename) in Plugin() function 68 ~Plugin() in ~Plugin() 123 Plugin(const Plugin&); 124 Plugin& operator=(const Plugin&); 170 { this->plugins_.push_back(new Plugin(filename)); } in add_plugin() 176 Plugin* last = this->plugins_.back(); in add_plugin_option() 356 typedef std::list<Plugin*> Plugin_list;
|
| H A D | plugin.cc | 194 Plugin::load() in load() 384 Plugin::claim_file(struct ld_plugin_input_file* plugin_input_file) in claim_file() 400 Plugin::all_symbols_read() in all_symbols_read() 409 Plugin::new_input(struct ld_plugin_input_file* plugin_input_file) in new_input() 418 Plugin::cleanup() in cleanup()
|
| H A D | ChangeLog-2017 | 10 * plugin.cc (Plugin::load): Include hooks for register_new_input 12 (Plugin::new_input): New function. 14 (Plugin_manager::claim_file): Call Plugin::new_input if in 16 * plugin.h (Plugin::set_new_input_handler): New function.
|
| /netbsd-src/external/gpl3/binutils.old/dist/gold/ |
| H A D | plugin.h | 54 class Plugin 57 Plugin(const char* filename) in Plugin() function 68 ~Plugin() in ~Plugin() 123 Plugin(const Plugin&); 124 Plugin& operator=(const Plugin&); 170 { this->plugins_.push_back(new Plugin(filename)); } in add_plugin() 176 Plugin* last = this->plugins_.back(); in add_plugin_option() 356 typedef std::list<Plugin*> Plugin_list;
|
| H A D | plugin.cc | 194 Plugin::load() in load() 384 Plugin::claim_file(struct ld_plugin_input_file* plugin_input_file) in claim_file() 400 Plugin::all_symbols_read() in all_symbols_read() 409 Plugin::new_input(struct ld_plugin_input_file* plugin_input_file) in new_input() 418 Plugin::cleanup() in cleanup()
|
| H A D | ChangeLog-2017 | 10 * plugin.cc (Plugin::load): Include hooks for register_new_input 12 (Plugin::new_input): New function. 14 (Plugin_manager::claim_file): Call Plugin::new_input if in 16 * plugin.h (Plugin::set_new_input_handler): New function.
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/FrontendTool/ |
| H A D | ExecuteCompilerInvocation.cpp | 77 for (const FrontendPluginRegistry::entry &Plugin : in CreateFrontendBaseAction() local 79 if (Plugin.getName() == CI.getFrontendOpts().ActionName) { in CreateFrontendBaseAction() 80 std::unique_ptr<PluginASTAction> P(Plugin.instantiate()); in CreateFrontendBaseAction() 85 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) in CreateFrontendBaseAction() 215 for (const FrontendPluginRegistry::entry &Plugin : in ExecuteCompilerInvocation() local 217 std::unique_ptr<PluginASTAction> P(Plugin.instantiate()); in ExecuteCompilerInvocation() 220 Clang->getFrontendOpts().ActionName = Plugin.getName().str(); in ExecuteCompilerInvocation()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | ObjectLinkingLayer.h | 65 class Plugin { 70 virtual ~Plugin(); 126 ObjectLinkingLayer &addPlugin(std::unique_ptr<Plugin> P) { in addPlugin() 201 std::vector<std::unique_ptr<Plugin>> Plugins; 204 class EHFrameRegistrationPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | DebugObjectManagerPlugin.h | 48 class DebugObjectManagerPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | MachOPlatform.h | 113 class InitScraperPlugin : public ObjectLinkingLayer::Plugin {
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | ValueProfileCollector.cpp | 47 PluginT Plugin; member in __anon52a321310111::PluginChain 52 : PluginChain<Ts...>(F, TLI), Plugin(F, TLI) {} in PluginChain() 56 Plugin.run(Candidates); in get()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| H A D | Execution.cpp | 70 std::unique_ptr<ToolExecutorPlugin> Plugin(TEPlugin.instantiate()); in createExecutorFromCommandLineArgsImpl() local 72 Plugin->create(*OptionsParser); in createExecutorFromCommandLineArgsImpl()
|
| H A D | CompilationDatabase.cpp | 70 std::unique_ptr<CompilationDatabasePlugin> Plugin(Database.instantiate()); in loadFromDirectory() local 72 Plugin->loadFromDirectory(BuildDirectory, DatabaseErrorMessage)) in loadFromDirectory()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.cpp | 73 for (const std::string &Plugin : Plugins) { in CheckerRegistry() local 77 DynamicLibrary::getPermanentLibrary(Plugin.c_str(), &ErrorMsg); in CheckerRegistry() 79 Diags.Report(diag::err_fe_unable_to_load_plugin) << Plugin << ErrorMsg; in CheckerRegistry() 89 << llvm::sys::path::filename(Plugin); in CheckerRegistry()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
| H A D | plugins.texi | 22 * Plugin API:: The APIs for plugins. 58 @node Plugin API 59 @section Plugin API 68 @subsection Plugin license check 90 @subsection Plugin initialization 101 @item @code{plugin_info}: Plugin invocation information. 163 @subsection Plugin callbacks 234 @item @code{char *name}: Plugin name. 386 /* Plugin callback called during attribute registration. 408 /* Plugin callback called during pragmas registration. Registered with [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
| H A D | plugins.texi | 22 * Plugin API:: The APIs for plugins. 58 @node Plugin API 59 @section Plugin API 68 @subsection Plugin license check 90 @subsection Plugin initialization 101 @item @code{plugin_info}: Plugin invocation information. 163 @subsection Plugin callbacks 238 @item @code{char *name}: Plugin name. 390 /* Plugin callback called during attribute registration. 412 /* Plugin callback called during pragmas registration. Registered with [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | FrontendAction.cpp | 160 for (const FrontendPluginRegistry::entry &Plugin : in CreateWrappedASTConsumer() local 162 if (Plugin.getName() == Arg) in CreateWrappedASTConsumer() 185 for (const FrontendPluginRegistry::entry &Plugin : in CreateWrappedASTConsumer() local 187 std::unique_ptr<PluginASTAction> P = Plugin.instantiate(); in CreateWrappedASTConsumer() 194 return PluginAction == Plugin.getName(); in CreateWrappedASTConsumer() 202 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) { in CreateWrappedASTConsumer()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/gold/ |
| H A D | README.txt | 1 The LLVM Gold LTO Plugin
|
| /netbsd-src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/ |
| H A D | MANIFEST | 1 # This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/ |
| H A D | LLJITWithObjectLinkingLayerPlugin.cpp | 45 class MyPlugin : public ObjectLinkingLayer::Plugin {
|
| /netbsd-src/external/ibm-public/postfix/dist/proto/ |
| H A D | stop.spell-proto-html | 327 Plugin
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | JITLink.rst | 51 ``ObjectLinkingLayer::Plugin``, which users can subclass in order to inspect and 59 The ``ObjectLinkingLayer::Plugin`` class provides the following methods: 111 Plugin authors are required to implement the ``notifyFailed``, 117 Plugin instances are added to an ``ObjectLinkingLayer`` by 122 // Plugin class to print the set of defined symbols in an object when that 124 class MyPlugin : public ObjectLinkingLayer::Plugin { 176 // Plugin triggers here when our lookup of main triggers linking of main.o 579 ``ObjectLinkingLayer::Plugin``. 961 linker rules are accomplished via an ``ObjectLinkingLayer::Plugin`` installed by
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| H A D | ObjectLinkingLayer.cpp | 564 ObjectLinkingLayer::Plugin::~Plugin() {} in ~Plugin()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/cmake/modules/ |
| H A D | FindGRPC.cmake | 45 … message(FATAL_ERROR "gRPC C++ Plugin and Protoc must be on $PATH for Clangd remote index build.")
|
| /netbsd-src/external/bsd/unbound/dist/contrib/ |
| H A D | unbound.spec_fedora | 55 Summary: Plugin for the munin / munin-node monitoring package 61 Plugin for the munin / munin-node monitoring package
|