/third_party/alsa-lib/test/ |
D | omixer.c | 59 err = snd_pcm_open(&phandle, pname, SND_PCM_STREAM_PLAYBACK, 0); in main() 68 err = snd_pcm_open(&chandle, cname, SND_PCM_STREAM_CAPTURE, 0); in main()
|
D | pcm_min.c | 20 if ((err = snd_pcm_open(&handle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) { in main()
|
D | audio_time.c | 179 if ((err = snd_pcm_open(&handle_p, pcm_name, SND_PCM_STREAM_PLAYBACK, 0)) < 0) { in main() 248 if ((err = snd_pcm_open(&handle_c, pcm_name, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK)) < 0) { in main()
|
D | chmap.c | 197 if (snd_pcm_open(&pcm, device, stream, SND_PCM_NONBLOCK) < 0) { in main()
|
D | pcm-multi-thread.c | 216 err = snd_pcm_open(&pcm, devname, stream, 0); in main()
|
D | latency.c | 592 …if ((err = snd_pcm_open(&phandle, pdevice, SND_PCM_STREAM_PLAYBACK, block ? 0 : SND_PCM_NONBLOCK))… in main() 596 …if ((err = snd_pcm_open(&chandle, cdevice, SND_PCM_STREAM_CAPTURE, block ? 0 : SND_PCM_NONBLOCK)) … in main()
|
D | seq-sender.c | 212 if ((err = snd_pcm_open(&phandle, "default", SND_PCM_STREAM_PLAYBACK, 0)) < 0) { in event_sender()
|
D | pcm.c | 882 if ((err = snd_pcm_open(&handle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) { in main()
|
/third_party/alsa-lib/ |
D | NOTES | 43 The default behavior of blocking at snd_pcm_open is changed to 44 non-blocking since version 1.0.11. That is, snd_pcm_open() returns 49 flag argument of snd_pcm_open() as well as the former version.
|
/third_party/pulseaudio/src/tests/ |
D | alsa-time-test.c | 69 r = snd_pcm_open(&pcm, dev, SND_PCM_STREAM_PLAYBACK, 0); in main() 71 r = snd_pcm_open(&pcm, dev, SND_PCM_STREAM_CAPTURE, 0); in main()
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/qsa/ |
D | SDL_qsa_audio.c | 372 status = snd_pcm_open(&this->hidden->audio_handle, in QSA_OpenDevice() 618 snd_pcm_open(&handle, it, devices, in QSA_DetectDevices() 676 snd_pcm_open(&handle, it, devices, in QSA_DetectDevices()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-audio/ |
D | audio.c | 46 n = snd_pcm_open(pcm, "default", type, SND_PCM_NONBLOCK); in set_hw_params()
|
/third_party/gstreamer/gstplugins_base/ext/alsa/ |
D | gstalsadeviceprovider.c | 56 if (snd_pcm_open (&handle, device_name, stream, SND_PCM_NONBLOCK) < 0) { in add_device()
|
D | gstalsa.c | 475 res = snd_pcm_open (&pcm, iec958_pcm_name, SND_PCM_STREAM_PLAYBACK, 0); in gst_alsa_open_iec958_pcm()
|
D | gstalsasrc.c | 776 CHECK (snd_pcm_open (&alsa->handle, alsa->device, SND_PCM_STREAM_CAPTURE, in gst_alsasrc_open()
|
D | gstalsasink.c | 874 CHECK (snd_pcm_open (&alsa->handle, alsa->device, SND_PCM_STREAM_PLAYBACK, in gst_alsasink_open()
|
/third_party/alsa-utils/bat/ |
D | alsa.c | 449 err = snd_pcm_open(&sndpcm.handle, bat->playback.device, in playback_alsa() 685 err = snd_pcm_open(&sndpcm.handle, bat->capture.device, in record_alsa()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/ |
D | audio.c | 135 n = snd_pcm_open(pcm, "default", type, SND_PCM_NONBLOCK); in set_hw_params()
|
/third_party/ffmpeg/libavdevice/ |
D | alsa.c | 195 res = snd_pcm_open(&h, audio_device, mode, flags); in ff_alsa_open()
|
/third_party/libsnd/programs/ |
D | sndfile-play.c | 167 if ((err = snd_pcm_open (&alsa_dev, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) in alsa_open()
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/alsa/ |
D | SDL_alsa_audio.c | 124 SDL_ALSA_SYM(snd_pcm_open); in load_alsa_syms()
|
/third_party/alsa-utils/axfer/ |
D | xfer-libasound.c | 277 err = snd_pcm_open(&state->handle, state->node_literal, xfer->direction, in open_handle()
|
/third_party/alsa-utils/speaker-test/ |
D | speaker-test.c | 1175 if ((err = snd_pcm_open(&handle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) { in main()
|
/third_party/alsa-lib/aserver/ |
D | aserver.c | 288 err = snd_pcm_open(&pcm, client->name, client->stream, SND_PCM_NONBLOCK); in pcm_shm_open()
|
/third_party/alsa-lib/include/ |
D | pcm.h | 504 int snd_pcm_open(snd_pcm_t **pcm, const char *name,
|