Home
last modified time | relevance | path

Searched refs:plugin (Results 1 – 25 of 56) sorted by relevance

123

/freebsd-10-stable/sys/dev/wtap/wtap_hal/
Dhal.c51 hal->plugin->work(hal->plugin, p); in hal_tx_proc()
78 register_plugin(struct wtap_hal *hal, struct wtap_plugin *plugin) in register_plugin() argument
81 plugin->init(plugin); in register_plugin()
82 hal->plugin = plugin; in register_plugin()
89 hal->plugin->deinit(hal->plugin); in deregister_plugin()
90 hal->plugin = NULL; /* catch illegal usages */ in deregister_plugin()
Dhal.h42 struct wtap_plugin *plugin; member
/freebsd-10-stable/contrib/ofed/management/opensm/opensm/
Dosm_event_plugin.c141 void osm_epi_destroy(osm_epi_plugin_t * plugin) in osm_epi_destroy() argument
143 if (plugin) { in osm_epi_destroy()
144 if (plugin->impl->delete) in osm_epi_destroy()
145 plugin->impl->delete(plugin->plugin_data); in osm_epi_destroy()
146 dlclose(plugin->handle); in osm_epi_destroy()
147 free(plugin->plugin_name); in osm_epi_destroy()
148 free(plugin); in osm_epi_destroy()
/freebsd-10-stable/sys/dev/wtap/
Dif_wtap_module.c139 struct visibility_plugin *plugin; in event_handler() local
153 plugin = (struct visibility_plugin *)malloc in event_handler()
156 plugin->base.wp_hal = hal; in event_handler()
157 plugin->base.init = visibility_init; in event_handler()
158 plugin->base.deinit = visibility_deinit; in event_handler()
159 plugin->base.work = visibility_work; in event_handler()
160 register_plugin(hal, (struct wtap_plugin *)plugin); in event_handler()
/freebsd-10-stable/sys/dev/wtap/plugins/
Dvisibility.c93 visibility_init(struct wtap_plugin *plugin) in visibility_init() argument
97 vis_plugin = (struct visibility_plugin *) plugin; in visibility_init()
98 plugin->wp_sdev = make_dev(&vis_cdevsw,0,UID_ROOT,GID_WHEEL,0600, in visibility_init()
100 plugin->wp_sdev->si_drv1 = vis_plugin; in visibility_init()
107 visibility_deinit(struct wtap_plugin *plugin) in visibility_deinit() argument
111 vis_plugin = (struct visibility_plugin *) plugin; in visibility_deinit()
112 destroy_dev(plugin->wp_sdev); in visibility_deinit()
122 visibility_work(struct wtap_plugin *plugin, struct packet *p) in visibility_work() argument
125 (struct visibility_plugin *) plugin; in visibility_work()
/freebsd-10-stable/contrib/ofed/management/opensm/doc/
Dperformance-manager-HOWTO.txt41 3b) using a plugin module to store the data to your own
140 Step 3b: Using a plugin module
144 plugin interface to extend OpenSM. The header file is osm_event_plugin.h.
148 An example plugin can be configured at compile time using the
149 "--enable-default-event-plugin" option on the configure line. This plugin is
152 create your own plugin.
Dopensm_release_notes-3.1.11.txt36 to pass to external program via event plugin interface. It handles
81 * Event plugin API
82 OpenSM allows to load dynamically various plugin modules.
Dopensm_release_notes-3.1.10.txt36 to pass to external program via event plugin interface. It handles
81 * Event plugin API
82 OpenSM allows to load dynamically various plugin modules.
/freebsd-10-stable/crypto/heimdal/lib/krb5/
Dplugin.c46 struct plugin { struct
59 struct plugin *next; argument
63 static struct plugin *registered = NULL;
99 struct plugin *e; in loadlib()
144 struct plugin *e; in krb5_plugin_register()
222 struct plugin *e; in load_plugins()
326 struct plugin *e; in _krb5_plugin_find()
DMakefile.am222 plugin.c \
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
DDiagnosticFrontendKinds.td32 "unable to find plugin '%0'">;
44 "unable to load plugin '%0': '%1'">;
122 "checker plugin '%0' is not compatible with this version of the analyzer">,
123 InGroup<DiagGroup<"analyzer-incompatible-plugin"> >;
125 "current API version is '%0', but plugin was compiled with version '%1'">;
/freebsd-10-stable/contrib/ofed/management/opensm/config/
Dosmvsel.m4236 dnl Check if they want the event plugin
240 dnl enable the default-event-plugin
241 AC_ARG_ENABLE(default-event-plugin,
242 [ --enable-default-event-plugin Enable a default event plugin "osmeventplugin" (default no)],
251 [Define as 1 if you want to enable the event plugin])
/freebsd-10-stable/contrib/ofed/management/opensm/include/opensm/
Dosm_config.h.in6 * NOTE: Defines used in header files MUST be included here to ensure plugin
22 /* Define as 1 if you want to enable the event plugin */
Dosm_event_plugin.h176 void osm_epi_destroy(osm_epi_plugin_t * plugin);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
DProcess.h717 SetProcessPluginName (const char *plugin) in SetProcessPluginName() argument
719 if (plugin && plugin[0]) in SetProcessPluginName()
720 m_plugin_name.assign (plugin); in SetProcessPluginName()
962 SetProcessPluginName (const char *plugin) in SetProcessPluginName() argument
964 if (plugin && plugin[0]) in SetProcessPluginName()
965 m_plugin_name.assign (plugin); in SetProcessPluginName()
/freebsd-10-stable/contrib/ofed/management/opensm/
Dopensm.spec.in18 %define _enable_event_plugin --enable-event-plugin
21 %define _disable_event_plugin --disable-event-plugin
Dconfigure.in15 dnl ensure plugin compatibility.
219 dnl select example event plugin or not
/freebsd-10-stable/contrib/file/magic/Magdir/
Dsinclair36 0 belong =0x4AFB0001 QL plugin-ROM data,
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
DCC1Options.td292 HelpText<"Load the named plugin (dynamic shared object)">;
293 def plugin : Separate<["-"], "plugin">, MetaVarName<"<name>">,
294 …HelpText<"Use the named plugin action instead of the default action (use \"help\" to list availabl…
295 def plugin_arg : JoinedAndSeparate<["-"], "plugin-arg-">,
297 HelpText<"Pass <arg> to plugin <name>">;
298 def add_plugin : Separate<["-"], "add-plugin">, MetaVarName<"<name>">,
299 HelpText<"Use the named plugin action in addition to the default action">;
/freebsd-10-stable/contrib/ofed/management/opensm/osmeventplugin/src/
Dosmeventplugin.c180 #error OpenSM plugin interface version missmatch
/freebsd-10-stable/crypto/heimdal/
DChangeLog46 * lib/krb5/send_to_kdc_plugin.h: add name for send_to_kdc plugin.
49 plugin.
51 * lib/krb5/send_to_kdc.c: Add support for the send_to_kdc plugin
56 * lib/krb5/krb5_err.et: add plugin error codes
DChangeLog.2006189 in a NULLed plugin list
325 * lib/krb5/krbhst.c: Use plugin for the other realm locate types
330 * lib/krb5/krb5_locl.h: Add plugin api
332 * lib/krb5/Makefile.am: Add plugin api.
334 * lib/krb5/krbhst.c: Use the resolve plugin interface.
336 * lib/krb5/locate_plugin.h: Add plugin interface for resolving
339 * lib/krb5/plugin.c: Add first version of the plugin interface.
/freebsd-10-stable/contrib/binutils/ld/emultempl/
Dspuelf.em441 { "plugin", no_argument, NULL, OPTION_SPU_PLUGIN },
452 --plugin Make SPU plugin.\n\
/freebsd-10-stable/tools/tools/editing/
Dfreebsd.vim27 " This is a plugin for Vim (tested with Vim v7.1) to follow the FreeBSD style(9)
/freebsd-10-stable/sys/dev/vmware/vmxnet3/
Dif_vmxreg.h263 } rss, pm, plugin; member

123