Lines Matching refs:plugins
6 tep_load_plugins, tep_unload_plugins, tep_load_plugins_hook - Load / unload traceevent plugins.
26 The _tep_load_plugins()_ function loads all plugins, located in the plugin
39 Loading of plugins can be controlled by the _tep_flags_, using the
43 _TEP_DISABLE_SYS_PLUGINS_ - do not load plugins, located in
45 _TEP_DISABLE_PLUGINS_ - do not load any plugins.
48 loading of all plugins is not the desired case.
50 The _tep_unload_plugins()_ function unloads the plugins, previously loaded by
52 _plugin_list_ is the list of loaded plugins, returned by
55 The _tep_load_plugins_hook_ function walks through all directories with plugins
57 with given _suffix_ are considered to be plugins. The _data_ is a user specified
63 The _tep_load_plugins()_ function returns a list of successfully loaded plugins,
64 or NULL in case no plugins are loaded.
74 struct tep_plugin_list *plugins = tep_load_plugins(tep);
75 if (plugins == NULL) {
76 /* no plugins are loaded */
79 tep_unload_plugins(plugins, tep);