Home
last modified time | relevance | path

Searched refs:plugins (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12-stable/usr.sbin/pmcstat/
Dpmcstat_log.c155 static struct pmc_plugins plugins[] = { variable
517 return (pmcstat_analyze_log(&args, plugins, &pmcstat_stats, pmcstat_kernproc, in pmcstat_process_log()
567 if (plugins[args.pa_plugin].pl_topdisplay != NULL) in pmcstat_refresh_top()
568 plugins[args.pa_plugin].pl_topdisplay(); in pmcstat_refresh_top()
631 if (plugins[args.pa_plugin].pl_shutdown != NULL) in pmcstat_keypress_log()
632 plugins[args.pa_plugin].pl_shutdown(NULL); in pmcstat_keypress_log()
634 if (plugins[args.pa_plugin].pl_init != NULL) in pmcstat_keypress_log()
635 plugins[args.pa_plugin].pl_init(); in pmcstat_keypress_log()
643 if (plugins[args.pa_plugin].pl_shutdown != NULL) in pmcstat_keypress_log()
644 plugins[args.pa_plugin].pl_shutdown(NULL); in pmcstat_keypress_log()
[all …]
/freebsd-12-stable/lib/libpmcstat/
Dlibpmcstat_logging.c81 struct pmcstat_args *args, struct pmc_plugins *plugins, in pmcstat_pmcid_add() argument
111 if (plugins[args->pa_pplugin].pl_newpmc != NULL) in pmcstat_pmcid_add()
112 plugins[args->pa_pplugin].pl_newpmc(ps, pr); in pmcstat_pmcid_add()
113 if (plugins[args->pa_plugin].pl_newpmc != NULL) in pmcstat_pmcid_add()
114 plugins[args->pa_plugin].pl_newpmc(ps, pr); in pmcstat_pmcid_add()
190 struct pmc_plugins *plugins, in pmcstat_analyze_log() argument
245 args, plugins); in pmcstat_analyze_log()
300 if (plugins[args->pa_pplugin].pl_process != NULL) in pmcstat_analyze_log()
301 plugins[args->pa_pplugin].pl_process( in pmcstat_analyze_log()
307 plugins[args->pa_plugin].pl_process( in pmcstat_analyze_log()
[all …]
Dlibpmcstat.h335 struct pmc_plugins *plugins);
340 struct pmcstat_args *args, struct pmc_plugins *plugins,
350 struct pmcstat_args *args, struct pmc_plugins *plugins,
357 struct pmcstat_args *args, struct pmc_plugins *plugins,
360 struct pmc_plugins *plugins,
375 struct pmc_plugins *plugins,
Dlibpmcstat_process.c79 struct pmcstat_args *args, struct pmc_plugins *plugins, in pmcstat_process_elf_exec() argument
120 0, args, plugins); in pmcstat_process_elf_exec()
150 struct pmcstat_args *args, struct pmc_plugins *plugins, in pmcstat_process_exec() argument
156 args, plugins)) == NULL) { in pmcstat_process_exec()
171 args, plugins, pmcstat_stats); in pmcstat_process_exec()
Dlibpmcstat_image.c475 struct pmc_plugins *plugins) in pmcstat_image_from_path() argument
509 if (plugins[args->pa_pplugin].pl_initimage != NULL) in pmcstat_image_from_path()
510 plugins[args->pa_pplugin].pl_initimage(pi); in pmcstat_image_from_path()
511 if (plugins[args->pa_plugin].pl_initimage != NULL) in pmcstat_image_from_path()
512 plugins[args->pa_plugin].pl_initimage(pi); in pmcstat_image_from_path()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
DCreateCheckerManager.cpp22 ArrayRef<std::string> plugins, in CheckerManager() argument
27 CheckerRegistry Registry(*RegistryData, plugins, Context.getDiagnostics(), in CheckerManager()
37 ArrayRef<std::string> plugins) in CheckerManager() argument
40 CheckerRegistry Registry(*RegistryData, plugins, Diags, AOptions, {}); in CheckerManager()
DAnalysisConsumer.cpp124 AnalyzerOptionsRef opts, ArrayRef<std::string> plugins, in AnalysisConsumer() argument
128 Plugins(plugins), Injector(injector), CTU(CI), in AnalysisConsumer()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/
DPlugins.def.in10 |* This file enumerates all of the plugins supported by this build of LLDB. *|
13 |* including this file will then enumerate all of the plugins. Script *|
14 |* interpreter plugins can be enumerated separately by defining *|
18 |* The set of plugins supported by LLDB is generated at configuration *|
/freebsd-12-stable/lib/clang/include/Plugins/
DPlugins.def11 |* This file enumerates all of the plugins supported by this build of LLDB. *|
14 |* including this file will then enumerate all of the plugins. Script *|
15 |* interpreter plugins can be enumerated separately by defining *|
19 |* The set of plugins supported by LLDB is generated at configuration *|
/freebsd-12-stable/usr.sbin/pmc/
Dpmc_util.c77 static struct pmc_plugins plugins[] = { variable
122 pmcstat_shutdown_logging(args, plugins, &pmcstat_stats); in pmc_util_shutdown_logging()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
DValueProfilePlugins.inc1 //=== ValueProfilePlugins.inc - set of plugins used by ValueProfileCollector =//
92 ///----------------------- Registration of the plugins -------------------------
/freebsd-12-stable/sys/modules/wtap/
DMakefile14 .PATH: ${SRCTOP}/sys/dev/wtap/plugins
/freebsd-12-stable/contrib/unbound/contrib/
Dunbound.spec_fedora115 install -d 0755 %{buildroot}%{_datadir}/munin/plugins/
116 install -m 0755 %{SOURCE4} %{buildroot}%{_datadir}/munin/plugins/unbound
118 ln -s unbound %{buildroot}%{_datadir}/munin/plugins/$plugin
157 %{_datadir}/munin/plugins/unbound*
Dunbound_munin_77 the plugins directory to enable the graph.
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h145 ArrayRef<std::string> plugins,
159 DiagnosticsEngine &Diags, ArrayRef<std::string> plugins);
/freebsd-12-stable/contrib/libxo/xohtml/external/
Djquery.qtip.js110 this.plugins = {};
211 self.plugins[name] = instance;
257 $.each(this.plugins, function(name) {
281 this.plugins = this.mouse = NULL;
516 if(category === 'builtin' || this.plugins[category]) {
518 this.plugins[category] || this, args
2555 tip = api.plugins.tip,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
DCheckerBase.td101 /// of this class (out-of-trunk checkers loaded from plugins obviously don't).
/freebsd-12-stable/contrib/llvm-project/
DFREEBSD-Xlist44 clang/lib/Analysis/plugins/CMakeLists.txt
45 clang/lib/Analysis/plugins/CheckerDependencyHandling/CMakeLists.txt
46 clang/lib/Analysis/plugins/CheckerOptionHandling/CMakeLists.txt
47 clang/lib/Analysis/plugins/SampleAnalyzer/CMakeLists.txt
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/utf8proc/
DNEWS.md136 - The Ruby and PostgreSQL plugins have been removed due to lack of testing ([#22]).
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DTargetProperties.td212 Desc<"If true, LanguageRuntime plugins' UnwindPlans will not be used when backtracing.">;
DProcess.cpp5749 LanguageSet plugins = in PrintWarningUnsupportedLanguage() local
5751 if (!plugins[language]) { in PrintWarningUnsupportedLanguage()
/freebsd-12-stable/contrib/subversion/doc/user/
Dlj_article.txt298 client-side plugins, and improved features for server administration.
/freebsd-12-stable/contrib/mandoc/
DTODO374 http://ikiwiki.info/plugins/contrib/mandoc/
/freebsd-12-stable/contrib/unbound/doc/
Dunbound.doxygen1021 # files needs to be copied into the plugins directory of eclipse. The name of
1022 # the directory within the plugins directory should be the same as
/freebsd-12-stable/contrib/ldns/
Dlibdns.doxygen1382 # to be copied into the plugins directory of eclipse. The name of the directory
1383 # within the plugins directory should be the same as the ECLIPSE_DOC_ID value.

12