/openbmc/linux/sound/core/oss/ |
H A D | pcm_oss.c | 544 plugin = runtime->oss.plugin_first; in snd_pcm_oss_plugin_clear() 550 runtime->oss.plugin_first = runtime->oss.plugin_last = NULL; in snd_pcm_oss_plugin_clear() 557 plugin->next = runtime->oss.plugin_first; in snd_pcm_plugin_insert() 559 if (runtime->oss.plugin_first) { in snd_pcm_plugin_insert() 560 runtime->oss.plugin_first->prev = plugin; in snd_pcm_plugin_insert() 561 runtime->oss.plugin_first = plugin; in snd_pcm_plugin_insert() 563 runtime->oss.plugin_last = in snd_pcm_plugin_insert() 564 runtime->oss.plugin_first = plugin; in snd_pcm_plugin_insert() 573 plugin->prev = runtime->oss.plugin_last; in snd_pcm_plugin_append() 574 if (runtime->oss.plugin_last) { in snd_pcm_plugin_append() [all …]
|
H A D | Makefile | 7 snd-mixer-oss-objs := mixer_oss.o 9 snd-pcm-oss-y := pcm_oss.o 10 snd-pcm-oss-$(CONFIG_SND_PCM_OSS_PLUGINS) += pcm_plugin.o \ 13 obj-$(CONFIG_SND_MIXER_OSS) += snd-mixer-oss.o 14 obj-$(CONFIG_SND_PCM_OSS) += snd-pcm-oss.o
|
/openbmc/qemu/audio/ |
H A D | ossaudio.c | 122 OSSVoiceOut *oss = (OSSVoiceOut *) hw; in oss_poll_out() local 124 qemu_set_fd_handler(oss->fd, NULL, oss_helper_poll_out, hw->s); in oss_poll_out() 129 OSSVoiceIn *oss = (OSSVoiceIn *) hw; in oss_poll_in() local 131 qemu_set_fd_handler(oss->fd, oss_helper_poll_in, NULL, hw->s); in oss_poll_in() 249 AudiodevOssOptions *oopts = &dev->u.oss; in oss_open() 369 static size_t oss_get_available_bytes(OSSVoiceOut *oss) in oss_get_available_bytes() argument 373 assert(oss->mmapped); in oss_get_available_bytes() 375 err = ioctl(oss->fd, SNDCTL_DSP_GETOPTR, &cntinfo); in oss_get_available_bytes() 381 return audio_ring_dist(cntinfo.ptr, oss->hw.pos_emul, oss->hw.size_emul); in oss_get_available_bytes() 386 OSSVoiceOut *oss = (OSSVoiceOut *)hw; in oss_run_buffer_out() local [all …]
|
H A D | meson.build | 16 ['oss', oss, files('ossaudio.c')],
|
/openbmc/linux/arch/m68k/mac/ |
H A D | oss.c | 31 volatile struct mac_oss *oss; variable 44 oss = (struct mac_oss *) OSS_BASE; in oss_init() 45 pr_debug("OSS detected at %p", oss); in oss_init() 52 oss->irq_level[i] = 0; in oss_init() 75 events = oss->irq_pending & OSS_IP_NUBUS; in oss_nubus_irq() 117 oss->irq_level[OSS_VIA1] = OSS_IRQLEV_VIA1; in oss_register_interrupts() 132 oss->irq_level[OSS_IOPSCC] = OSS_IRQLEV_IOPSCC; in oss_irq_enable() 135 oss->irq_level[OSS_IOPISM] = OSS_IRQLEV_IOPISM; in oss_irq_enable() 138 oss->irq_level[OSS_SCSI] = OSS_IRQLEV_SCSI; in oss_irq_enable() 147 oss->irq_level[irq] = OSS_IRQLEV_NUBUS; in oss_irq_enable() [all …]
|
H A D | Makefile | 6 obj-y := config.o macints.o iop.o via.o oss.o psc.o \
|
/openbmc/qemu/tests/docker/ |
H A D | test-fuzz | 20 mkdir build-oss-fuzz 21 export LSAN_OPTIONS=suppressions=scripts/oss-fuzz/lsan_suppressions.txt 22 env CC="clang" CXX="clang++" CFLAGS="-fsanitize=address" ./scripts/oss-fuzz/build.sh 24 for fuzzer in $(find ./build-oss-fuzz/DEST_DIR/ -executable -type f | grep -v slirp); do
|
/openbmc/linux/Documentation/sound/designs/ |
H A D | oss-emulation.rst | 13 as add-on kernel modules, snd-pcm-oss, snd-mixer-oss and snd-seq-oss. 33 /proc/asound/oss/sndstat. This shows in the same syntax of 79 snd-pcm-oss and snd-rawmidi. In the case of PCM, the following 80 options are available for snd-pcm-oss: 93 options snd-pcm-oss adsp_map=2 100 options snd-pcm-oss adsp_map=0,2 130 stream, ``/proc/asound/cardX/pcmY[cp]/oss``, where X is the card number 133 exists only after snd-pcm-oss module is loaded. 171 % echo "quake 0 0 direct" > /proc/asound/card0/pcm0p/oss 177 % echo "quake 0 0 disable" > /proc/asound/card0/pcm0c/oss [all …]
|
H A D | index.rst | 15 oss-emulation 16 seq-oss
|
H A D | seq-oss.rst | 67 ``/proc/asound/seq/oss`` at any time. In the later version, 75 and OSS emulation (``--with-oss=yes``) options. A module ``snd-seq-oss.o`` 86 Run ``cat /proc/asound/seq/oss``, and check the devices. For example, 112 ``/proc/asound/oss-devices`` or ones of the original OSS driver. 113 Use the device number listed in ``/proc/asound/seq/oss`` 132 ``/proc/asound/seq/oss``. 134 ``/proc/asound/oss-devices``.
|
/openbmc/qemu/util/ |
H A D | coroutine-sigaltstack.c | 155 stack_t oss; in qemu_coroutine_new() local 205 if (sigaltstack(&ss, &oss) < 0) { in qemu_coroutine_new() 235 if (!(oss.ss_flags & SS_DISABLE)) { in qemu_coroutine_new() 236 sigaltstack(&oss, NULL); in qemu_coroutine_new()
|
/openbmc/linux/sound/core/seq/oss/ |
H A D | Makefile | 7 snd-seq-oss-objs := seq_oss.o seq_oss_init.o seq_oss_timer.o seq_oss_ioctl.o \ 11 obj-$(CONFIG_SND_SEQUENCER_OSS) += snd-seq-oss.o
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/fluidsynth/ |
H A D | fluidsynth_2.3.4.bb | 31 PACKAGECONFIG[oss] = "-Denable-oss=ON,-Denable-oss=OFF"
|
/openbmc/qemu/scripts/oss-fuzz/ |
H A D | build.sh | 92 rm -rf $DEST_DIR/qemu-bundle/opt/qemu-oss-fuzz/bin 93 rm -rf $DEST_DIR/qemu-bundle/opt/qemu-oss-fuzz/libexec
|
/openbmc/linux/sound/core/ |
H A D | pcm.c | 403 if (substream->oss.oss) { in snd_pcm_substream_proc_hw_params_read() 404 snd_iprintf(buffer, "OSS format: %s\n", snd_pcm_oss_format_name(runtime->oss.format)); in snd_pcm_substream_proc_hw_params_read() 405 snd_iprintf(buffer, "OSS channels: %u\n", runtime->oss.channels); in snd_pcm_substream_proc_hw_params_read() 406 snd_iprintf(buffer, "OSS rate: %u\n", runtime->oss.rate); in snd_pcm_substream_proc_hw_params_read() 407 snd_iprintf(buffer, "OSS period bytes: %lu\n", (unsigned long)runtime->oss.period_bytes); in snd_pcm_substream_proc_hw_params_read() 408 snd_iprintf(buffer, "OSS periods: %u\n", runtime->oss.periods); in snd_pcm_substream_proc_hw_params_read() 409 snd_iprintf(buffer, "OSS period frames: %lu\n", (unsigned long)runtime->oss.period_frames); in snd_pcm_substream_proc_hw_params_read() 646 mutex_init(&pstr->oss.setup_mutex); in snd_pcm_new_stream() 844 for (setup = pstr->oss.setup_list; setup; setup = setupn) { in snd_pcm_free_stream()
|
/openbmc/openbmc/poky/meta/recipes-multimedia/alsa/ |
H A D | alsa-plugins_1.2.12.bb | 78 # multiple plugins, as is the case with the pulse, oss and maemo plugins. In 81 # that the configuration references are installed. The oss and maemo 104 FILES:${MLPREFIX}libasound-module-pcm-oss += "\ 105 ${datadir}/alsa/alsa.conf.d/50-oss.conf \ 106 ${sysconfdir}/alsa/conf.d/50-oss.conf \
|
/openbmc/linux/sound/ |
H A D | Makefile | 6 obj-$(CONFIG_DMASOUND) += oss/dmasound/
|
/openbmc/qemu/docs/devel/testing/ |
H A D | fuzzing.rst | 182 <https://github.com/google/oss-fuzz>`_. By default, the OSS-Fuzz build 205 __(https://github.com/google/oss-fuzz/blob/master/projects/qemu/Dockerfile) 208 QEMU source tree at ``scripts/oss-fuzz/build.sh`` 229 scripts/oss-fuzz/reorder_fuzzer_qtest_trace.py /tmp/trace > /tmp/reproducer 248 scripts/oss-fuzz/minimize_qtest_trace.py -M1 -M2 \ 257 ./scripts/oss-fuzz/output_reproducer.py -bash /tmp/reproducer-minimized 261 ./scripts/oss-fuzz/output_reproducer.py -owner "John Smith <john@smith.com>"\
|
/openbmc/qemu/bsd-user/ |
H A D | signal.c | 594 target_stack_t oss; in do_sigaltstack() local 598 oss.ss_sp = tswapl(ts->sigaltstack_used.ss_sp); in do_sigaltstack() 599 oss.ss_size = tswapl(ts->sigaltstack_used.ss_size); in do_sigaltstack() 600 oss.ss_flags = tswapl(sas_ss_flags(ts, sp)); in do_sigaltstack() 645 if (copy_to_user(uoss_addr, &oss, sizeof(oss))) { in do_sigaltstack()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hidapi/ |
H A D | hidapi_0.14.0.bb | 2 HOMEPAGE = "http://www.signal11.us/oss/hidapi/"
|
/openbmc/linux/arch/m68k/include/asm/ |
H A D | mac_oss.h | 73 extern volatile struct mac_oss *oss;
|
/openbmc/linux/Documentation/translations/zh_CN/admin-guide/ |
H A D | security-bugs.rst | 61 <http://oss-security.openwall.org/wiki/mailing-lists/distros#how-to-use-the-lists>。
|
/openbmc/linux/include/sound/ |
H A D | pcm_oss.h | 58 unsigned oss: 1; /* oss mode */ member
|
/openbmc/linux/Documentation/translations/zh_TW/admin-guide/ |
H A D | security-bugs.rst | 64 <http://oss-security.openwall.org/wiki/mailing-lists/distros#how-to-use-the-lists>。
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/mikmod/ |
H A D | libmikmod_3.3.11.1.bb | 19 --enable-oss \
|