Lines Matching refs:plugins
6 tep_load_plugins, tep_unload_plugins - Load / unload traceevent plugins.
20 The _tep_load_plugins()_ function loads all plugins, located in the plugin
31 Loading of plugins can be controlled by the _tep_flags_, using the
35 _TEP_DISABLE_SYS_PLUGINS_ - do not load plugins, located in
37 _TEP_DISABLE_PLUGINS_ - do not load any plugins.
40 loading of all plugins is not the desired case.
42 The _tep_unload_plugins()_ function unloads the plugins, previously loaded by
44 _plugin_list_ is the list of loaded plugins, returned by
49 The _tep_load_plugins()_ function returns a list of successfully loaded plugins,
50 or NULL in case no plugins are loaded.
60 struct tep_plugin_list *plugins = tep_load_plugins(tep);
61 if (plugins == NULL) {
62 /* no plugins are loaded */
65 tep_unload_plugins(plugins, tep);