/openbmc/linux/sound/core/oss/ |
H A D | pcm_plugin.c | 49 static int snd_pcm_plugin_alloc(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in snd_pcm_plugin_alloc() argument 57 if (plugin->stream == SNDRV_PCM_STREAM_PLAYBACK) { in snd_pcm_plugin_alloc() 58 format = &plugin->src_format; in snd_pcm_plugin_alloc() 60 format = &plugin->dst_format; in snd_pcm_plugin_alloc() 72 if (plugin->buf_frames < frames) { in snd_pcm_plugin_alloc() 73 kvfree(plugin->buf); in snd_pcm_plugin_alloc() 74 plugin->buf = kvzalloc(size, GFP_KERNEL); in snd_pcm_plugin_alloc() 75 plugin->buf_frames = frames; in snd_pcm_plugin_alloc() 77 if (!plugin->buf) { in snd_pcm_plugin_alloc() 78 plugin->buf_frames = 0; in snd_pcm_plugin_alloc() [all …]
|
H A D | io.c | 37 static snd_pcm_sframes_t io_playback_transfer(struct snd_pcm_plugin *plugin, in io_playback_transfer() argument 42 if (snd_BUG_ON(!plugin)) in io_playback_transfer() 46 if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) { in io_playback_transfer() 47 return pcm_write(plugin->plug, src_channels->area.addr, frames); in io_playback_transfer() 49 int channel, channels = plugin->dst_format.channels; in io_playback_transfer() 50 void **bufs = (void**)plugin->extra_data; in io_playback_transfer() 59 return pcm_writev(plugin->plug, bufs, frames); in io_playback_transfer() 63 static snd_pcm_sframes_t io_capture_transfer(struct snd_pcm_plugin *plugin, in io_capture_transfer() argument 68 if (snd_BUG_ON(!plugin)) in io_capture_transfer() 72 if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) { in io_capture_transfer() [all …]
|
H A D | rate.c | 40 typedef void (*rate_f)(struct snd_pcm_plugin *plugin, 53 static void rate_init(struct snd_pcm_plugin *plugin) in rate_init() argument 56 struct rate_priv *data = (struct rate_priv *)plugin->extra_data; in rate_init() 58 for (channel = 0; channel < plugin->src_format.channels; channel++) { in rate_init() 64 static void resample_expand(struct snd_pcm_plugin *plugin, in resample_expand() argument 76 struct rate_priv *data = (struct rate_priv *)plugin->extra_data; in resample_expand() 79 for (channel = 0; channel < plugin->src_format.channels; channel++) { in resample_expand() 85 snd_pcm_area_silence(&dst_channels[channel].area, 0, dst_frames, plugin->dst_format.format); in resample_expand() 123 static void resample_shrink(struct snd_pcm_plugin *plugin, in resample_shrink() argument 135 struct rate_priv *data = (struct rate_priv *)plugin->extra_data; in resample_shrink() [all …]
|
H A D | mulaw.c | 141 typedef void (*mulaw_f)(struct snd_pcm_plugin *plugin, 168 static void mulaw_decode(struct snd_pcm_plugin *plugin, in mulaw_decode() argument 173 struct mulaw_priv *data = (struct mulaw_priv *)plugin->extra_data; in mulaw_decode() 175 int nchannels = plugin->src_format.channels; in mulaw_decode() 183 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in mulaw_decode() 214 static void mulaw_encode(struct snd_pcm_plugin *plugin, in mulaw_encode() argument 219 struct mulaw_priv *data = (struct mulaw_priv *)plugin->extra_data; in mulaw_encode() 221 int nchannels = plugin->src_format.channels; in mulaw_encode() 229 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in mulaw_encode() 248 static snd_pcm_sframes_t mulaw_transfer(struct snd_pcm_plugin *plugin, in mulaw_transfer() argument [all …]
|
H A D | copy.c | 27 static snd_pcm_sframes_t copy_transfer(struct snd_pcm_plugin *plugin, in copy_transfer() argument 35 if (snd_BUG_ON(!plugin || !src_channels || !dst_channels)) in copy_transfer() 39 nchannels = plugin->src_format.channels; in copy_transfer() 49 snd_pcm_area_silence(&dst_channels->area, 0, frames, plugin->dst_format.format); in copy_transfer() 54 …snd_pcm_area_copy(&src_channels->area, 0, &dst_channels->area, 0, frames, plugin->src_format.forma… in copy_transfer() 67 struct snd_pcm_plugin *plugin; in snd_pcm_plugin_build_copy() local 86 0, &plugin); in snd_pcm_plugin_build_copy() 89 plugin->transfer = copy_transfer; in snd_pcm_plugin_build_copy() 90 *r_plugin = plugin; in snd_pcm_plugin_build_copy()
|
H A D | linear.c | 55 static void convert(struct snd_pcm_plugin *plugin, in convert() argument 60 struct linear_priv *data = (struct linear_priv *)plugin->extra_data; in convert() 62 int nchannels = plugin->src_format.channels; in convert() 70 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in convert() 88 static snd_pcm_sframes_t linear_transfer(struct snd_pcm_plugin *plugin, in linear_transfer() argument 93 if (snd_BUG_ON(!plugin || !src_channels || !dst_channels)) in linear_transfer() 100 for (channel = 0; channel < plugin->src_format.channels; channel++) { in linear_transfer() 112 convert(plugin, src_channels, dst_channels, frames); in linear_transfer() 156 struct snd_pcm_plugin *plugin; in snd_pcm_plugin_build_linear() local 172 sizeof(struct linear_priv), &plugin); in snd_pcm_plugin_build_linear() [all …]
|
H A D | route.c | 47 static snd_pcm_sframes_t route_transfer(struct snd_pcm_plugin *plugin, in route_transfer() argument 56 if (snd_BUG_ON(!plugin || !src_channels || !dst_channels)) in route_transfer() 63 nsrcs = plugin->src_format.channels; in route_transfer() 64 ndsts = plugin->dst_format.channels; in route_transfer() 66 format = plugin->dst_format.format; in route_transfer() 92 struct snd_pcm_plugin *plugin; in snd_pcm_plugin_build_route() local 104 src_format, dst_format, 0, &plugin); in snd_pcm_plugin_build_route() 108 plugin->transfer = route_transfer; in snd_pcm_plugin_build_route() 109 *r_plugin = plugin; in snd_pcm_plugin_build_route()
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/netdata/netdata/ |
H A D | netdata.conf | 247 [plugin:proc:/proc/net/dev] 251 [plugin:proc] 290 [plugin:charts.d] 294 [plugin:apps] 298 [plugin:idlejitter] 301 [plugin:proc:/proc/interrupts] 305 [plugin:proc:/proc/sys/kernel/random/entropy_avail] 308 [plugin:proc:/proc/diskstats] 341 [plugin:proc:/proc/net/snmp] 358 [plugin:proc:/proc/net/netstat] [all …]
|
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-xfce/packagegroups/ |
H A D | packagegroup-xfce-extended.bb | 22 xfce4-cpufreq-plugin \ 23 xfce4-cpugraph-plugin \ 24 xfce4-datetime-plugin \ 25 xfce4-eyes-plugin \ 26 xfce4-clipman-plugin \ 27 xfce4-diskperf-plugin \ 28 xfce4-netload-plugin \ 29 xfce4-genmon-plugin \ 30 xfce4-xkb-plugin \ 31 xfce4-wavelan-plugin \ [all …]
|
H A D | packagegroup-xfce-base.bb | 20 xfce4-panel-plugin-actions \ 21 xfce4-panel-plugin-applicationsmenu \ 22 xfce4-panel-plugin-clock \ 23 xfce4-panel-plugin-directorymenu \ 24 xfce4-panel-plugin-launcher \ 25 xfce4-panel-plugin-pager \ 26 xfce4-panel-plugin-separator \ 27 xfce4-panel-plugin-showdesktop \ 28 xfce4-panel-plugin-systray \ 29 xfce4-panel-plugin-tasklist \ [all …]
|
/openbmc/openbmc-test-automation/ffdc/docs/ |
H A D | plugin.md | 13 The plugin works like any stand-alone piece of python script or library 16 The main components in plugin infrastructure are: 18 - plugin directory 19 - plugin directive in YAML 20 - plugin parser in the collector engine 43 # Sample for documentation plugin 63 In YAML plugin, you will need to pass self object as part of the arguments. 77 This is to avoid passing object self in plugin args YAML when calling the class 81 You can add your own plugin modules to extend further. 83 Test your plugin: [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/strongswan/ |
H A D | strongswan_6.0.0.bb | 32 PACKAGECONFIG[aes] = "--enable-aes,--disable-aes,,${PN}-plugin-aes" 33 PACKAGECONFIG[aesni] = "--enable-aesni,--disable-aesni,,${PN}-plugin-aesni" 36 PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl,${PN}-plugin-curl" 37 PACKAGECONFIG[des] = "--enable-des,--disable-des,,${PN}-plugin-des" 38 PACKAGECONFIG[eap-identity] = "--enable-eap-identity,--disable-eap-identity,,${PN}-plugin-eap-ident… 39 PACKAGECONFIG[eap-mschapv2] = "--enable-eap-mschapv2,--disable-eap-mschapv2,,${PN}-plugin-eap-mscha… 40 PACKAGECONFIG[fips-prf] = "--enable-fips-prf,--disable-fips-prf,,${PN}-plugin-fips-prf" 41 PACKAGECONFIG[gmp] = "--enable-gmp,--disable-gmp,gmp,${PN}-plugin-gmp" 42 PACKAGECONFIG[hmac] = "--enable-hmac,--disable-hmac,,${PN}-plugin-hmac" 43 PACKAGECONFIG[ldap] = "--enable-ldap,--disable-ldap,openldap,${PN}-plugin-ldap" [all …]
|
/openbmc/linux/scripts/ |
H A D | Makefile.gcc-plugins | 3 gcc-plugin-$(CONFIG_GCC_PLUGIN_LATENT_ENTROPY) += latent_entropy_plugin.so 4 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_LATENT_ENTROPY) \ 11 gcc-plugin-$(CONFIG_GCC_PLUGIN_STRUCTLEAK) += structleak_plugin.so 12 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE) \ 14 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF) \ 16 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL) \ 22 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK) \ 25 gcc-plugin-$(CONFIG_GCC_PLUGIN_STACKLEAK) += stackleak_plugin.so 26 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STACKLEAK) \ 28 gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STACKLEAK) \ [all …]
|
/openbmc/qemu/plugins/ |
H A D | core.c | 40 struct qemu_plugin_state plugin; variable 47 id_p = g_hash_table_lookup(plugin.id_ht, &id); in plugin_id_to_ctx_locked() 66 run_on_cpu_data mask = RUN_ON_CPU_HOST_ULONG(*plugin.mask); in plugin_cpu_update__locked() 82 if (QLIST_EMPTY_RCU(&plugin.cb_lists[ev])) { in plugin_unregister_cb__locked() 83 clear_bit(ev, plugin.mask); in plugin_unregister_cb__locked() 84 g_hash_table_foreach(plugin.cpu_ht, plugin_cpu_update__locked, NULL); in plugin_unregister_cb__locked() 104 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) { in plugin_vcpu_cb__simple() 127 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) { in plugin_cb__simple() 150 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) { in plugin_cb__udata() 167 QEMU_LOCK_GUARD(&plugin.lock); in do_plugin_register_cb() [all …]
|
/openbmc/linux/scripts/gcc-plugins/ |
H A D | Makefile | 27 GCC_PLUGINS_DIR = $(shell $(CC) -print-file-name=plugin) 39 plugin-single := $(foreach m, $(GCC_PLUGIN), $(if $($(m:%.so=%-objs)),,$(m))) 40 plugin-multi := $(filter-out $(plugin-single), $(GCC_PLUGIN)) 41 plugin-objs := $(sort $(foreach m, $(plugin-multi), $($(m:%.so=%-objs)))) 43 targets += $(plugin-single) $(plugin-multi) $(plugin-objs) 46 plugin-single := $(addprefix $(obj)/, $(plugin-single)) 47 plugin-multi := $(addprefix $(obj)/, $(plugin-multi)) 48 plugin-objs := $(addprefix $(obj)/, $(plugin-objs)) 53 $(plugin-single): $(obj)/%.so: $(src)/%.c FORCE 60 $(plugin-multi): FORCE [all …]
|
/openbmc/openbmc/meta-security/dynamic-layers/meta-perl/recipes-security/nikto/ |
H A D | nikto_2.1.6.bb | 44 install -m 0644 plugins/nikto_apache_expect_xss.plugin ${D}${sysconfdir}/nikto/plugins 45 install -m 0644 plugins/nikto_apacheusers.plugin ${D}${sysconfdir}/nikto/plugins 46 install -m 0644 plugins/nikto_auth.plugin ${D}${sysconfdir}/nikto/plugins 47 install -m 0644 plugins/nikto_cgi.plugin ${D}${sysconfdir}/nikto/plugins 48 install -m 0644 plugins/nikto_clientaccesspolicy.plugin ${D}${sysconfdir}/nikto/plugins 49 install -m 0644 plugins/nikto_content_search.plugin ${D}${sysconfdir}/nikto/plugins 50 install -m 0644 plugins/nikto_cookies.plugin ${D}${sysconfdir}/nikto/plugins 51 install -m 0644 plugins/nikto_core.plugin ${D}${sysconfdir}/nikto/plugins 52 install -m 0644 plugins/nikto_dictionary_attack.plugin ${D}${sysconfdir}/nikto/plugins 53 install -m 0644 plugins/nikto_dir_traversal.plugin ${D}${sysconfdir}/nikto/plugins [all …]
|
/openbmc/qemu/tests/tcg/ |
H A D | Makefile.target | 166 $(eval run-plugin-$(t)-with-$(p): $t $p) \ 167 $(eval RUN_TESTS+=run-plugin-$(t)-with-$(p)))) 171 strip-plugin = $(wordlist 1, 1, $(subst -with-, ,$1)) 172 extract-plugin = $(wordlist 2, 2, $(subst -with-, ,$1)) 178 run-plugin-%-with-libmem.so: PLUGIN_ARGS=$(COMMA)inline=true 184 run-plugin-%: 186 -plugin $(PLUGIN_LIB)/$(call extract-plugin,$@)$(PLUGIN_ARGS) \ 187 -d plugin -D $*.pout \ 188 $(call strip-plugin,$<)) 191 TEST, check plugin $(call extract-plugin,$@) output \ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-xfce/xfce4-power-manager/ |
H A D | xfce4-power-manager_4.20.0.bb | 27 PACKAGES += "xfce4-powermanager-plugin" 34 FILES:xfce4-powermanager-plugin = " \ 39 RDEPENDS:xfce4-powermanager-plugin = "${PN}" 42 # xfce4-brightness-plugin was replaced by xfce4-powermanager-plugin 43 RPROVIDES:xfce4-powermanager-plugin += "xfce4-brightness-plugin" 44 RREPLACES:xfce4-powermanager-plugin += "xfce4-brightness-plugin" 45 RCONFLICTS:xfce4-powermanager-plugin += "xfce4-brightness-plugin"
|
/openbmc/linux/Documentation/kbuild/ |
H A D | gcc-plugins.rst | 2 GCC plugin infrastructure 14 The GCC plugin infrastructure of the kernel supports building out-of-tree 18 Currently the GCC plugin infrastructure supports only some architectures. 49 GCC plugin), so the entire ecosystem can benefit from it. 51 Similarly, even if a feature provided by a GCC plugin does *not* exist 55 After a feature is available in upstream GCC, the plugin will be made 57 kernel-supported versions of GCC provide the feature, the plugin will 86 You must install the gcc plugin headers for your gcc version, 89 apt-get install gcc-10-plugin-dev 93 dnf install gcc-plugin-devel libmpc-devel [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/connman/ |
H A D | connman.inc | 114 connman-plugin-loopback \ 115 connman-plugin-ethernet \ 116 ${@bb.utils.contains('PACKAGECONFIG', 'bluetooth','connman-plugin-bluetooth', '', d)} \ 117 ${@bb.utils.contains('PACKAGECONFIG', 'wifi','connman-plugin-wifi', '', d)} \ 118 ${@bb.utils.contains('PACKAGECONFIG', '3g','connman-plugin-ofono', '', d)} \ 125 PACKAGES_DYNAMIC += "^${PN}-plugin-.*" 143 plugin_name = d.expand('${PN}-plugin-%s') 145 '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True ) 150 plugin_name = d.expand('${PN}-plugin-vpn-%s') 152 '${PN} VPN plugin for %s', extra_depends='', hook=hook, prepend=True ) [all …]
|
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-xfce/xfce4-panel/files/ |
H A D | 0001-windowmenu-do-not-display-desktop-icon-when-no-windo.patch | 11 * desktop icon confuses when using showdesktop plugin 33 @@ -266,7 +266,7 @@ window_menu_plugin_init (WindowMenuPlugin *plugin) 34 g_signal_connect (G_OBJECT (plugin->button), "toggled", 35 G_CALLBACK (window_menu_plugin_menu), plugin); 37 - plugin->icon = gtk_image_new_from_icon_name ("user-desktop", GTK_ICON_SIZE_BUTTON); 38 + plugin->icon = gtk_image_new_from_icon_name (NULL, GTK_ICON_SIZE_BUTTON); 39 gtk_container_add (GTK_CONTAINER (plugin->button), plugin->icon); 40 gtk_widget_show (plugin->icon); 49 window_menu_plugin_set_icon (plugin, window); 57 icon_size = xfce_panel_plugin_get_icon_size (XFCE_PANEL_PLUGIN (plugin));
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gedit/gedit/ |
H A D | 0001-fix-for-clang-18.patch | 5 ../plugins/quickhighlight/gedit-quick-highlight-plugin.c: In function ‘gedit_quick_highlight_plugin… 6 ../plugins/quickhighlight/gedit-quick-highlight-plugin.c:96:47: error: implicit declaration of func… 8 96 | plugin->priv->style = gtk_source_style_copy (style); 11 ../plugins/quickhighlight/gedit-quick-highlight-plugin.c:96:47: warning: nested extern declaration … 12 ../plugins/quickhighlight/gedit-quick-highlight-plugin.c:96:45: error: assignment to ‘GtkSourceStyl… 13 96 | plugin->priv->style = gtk_source_style_copy (style); 16 --- a/plugins/quickhighlight/gedit-quick-highlight-plugin.c 2024-02-20 08:11:47.925749255 +0100 17 +++ b/plugins/quickhighlight/gedit-quick-highlight-plugin.c 2024-02-20 08:12:16.218594067 +0100 26 plugin->priv->style = gtk_source_style_copy (style);
|
/openbmc/bmcweb/ |
H A D | .gitignore | 66 # Mongo Explorer plugin 75 # mpeltonen/sbt-idea plugin 78 # JIRA plugin 79 atlassian-ide-plugin.xml 81 # Cursive Clojure plugin 84 # SonarLint plugin 87 # Crashlytics plugin (for Android Studio and IntelliJ) 107 # Sonarlint plugin 108 # https://plugins.jetbrains.com/plugin/7973-sonarlint 112 # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin [all …]
|
/openbmc/telemetry/ |
H A D | .gitignore | 54 # Mongo Explorer plugin 63 # mpeltonen/sbt-idea plugin 66 # JIRA plugin 67 atlassian-ide-plugin.xml 69 # Cursive Clojure plugin 72 # Crashlytics plugin (for Android Studio and IntelliJ) 92 # Sonarlint plugin 93 # https://plugins.jetbrains.com/plugin/7973-sonarlint 97 # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin 100 # Markdown Navigator plugin [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/freerdp/ |
H A D | freerdp_2.11.7.bb | 59 PACKAGES_DYNAMIC += "^libfreerdp-plugin-.*" 76 output_pattern='libfreerdp-plugin-%s', 77 description='FreeRDP plugin %s', 78 prepend=True, extra_depends='libfreerdp-plugin-audin') 81 output_pattern='libfreerdp-plugin-%s', 82 description='FreeRDP plugin %s', 83 prepend=True, extra_depends='libfreerdp-plugin-rdpsnd') 86 output_pattern='libfreerdp-plugin-%s', 87 description='FreeRDP plugin %s', 88 prepend=True, extra_depends='libfreerdp-plugin-tsmf') [all …]
|