/device/samsung/crespo/alsa-lib/test/ |
pcm_min.c | 22 if ((err = snd_pcm_open(&handle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) {
|
latency.c | 579 if ((err = snd_pcm_open(&phandle, pdevice, SND_PCM_STREAM_PLAYBACK, block ? 0 : SND_PCM_NONBLOCK)) < 0) { 583 if ((err = snd_pcm_open(&chandle, cdevice, SND_PCM_STREAM_CAPTURE, block ? 0 : SND_PCM_NONBLOCK)) < 0) {
|
seq-sender.c | 212 if ((err = snd_pcm_open(&phandle, "default", SND_PCM_STREAM_PLAYBACK, 0)) < 0) {
|
pcm.c | 859 if ((err = snd_pcm_open(&handle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) {
|
/development/simulator/wrapsim/ |
DevAudio.c | 35 snd_pcm_open(&audioState->handle, "default", SND_PCM_STREAM_PLAYBACK, 0);
|
/external/qemu/distrib/sdl-1.2.12/src/audio/alsa/ |
SDL_alsa_audio.c | 64 static int (*SDL_NAME(snd_pcm_open))(snd_pcm_t **pcm, const char *name, snd_pcm_stream_t stream, int mode); 99 { "snd_pcm_open", (void**)(char*)&SDL_NAME(snd_pcm_open) }, 197 status = SDL_NAME(snd_pcm_open)(&handle, get_audio_device(2), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK); 381 status = SDL_NAME(snd_pcm_open)(&pcm_handle, get_audio_device(spec->channels), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
|
/external/qemu/android/config/ |
check-alsa.c | 52 DYN_FUNCTION(int,snd_pcm_open,(snd_pcm_t **pcm, const char *name,snd_pcm_stream_t stream, int mode)) \
|
/external/qemu/audio/ |
alsaaudio.c | 83 DYNLINK_FUNC(int,snd_pcm_open,(snd_pcm_t **pcm, const char *name,snd_pcm_stream_t stream, int mode)) \ 354 err = FF(snd_pcm_open) (
|
/device/samsung/crespo/libaudio/ |
AudioHardwareALSA.cpp | 1020 err = snd_pcm_open(&mHandle, devName, mDefaults->direction, 0); 1034 err = snd_pcm_open(&mHandle, devName, mDefaults->direction, 0); 1038 err = snd_pcm_open(&mHandle, devName, mDefaults->direction, 0); [all...] |
/external/srec/audio/AudioIn/UNIX/src/ |
audioin.c | 857 if ((rc = snd_pcm_open(&ghPCM, "default", SND_PCM_STREAM_CAPTURE, 0)) < 0) 859 PLogError ( "Audio In Error snd_pcm_open() (rc = %d: %s)\n", rc, snd_strerror(rc)); [all...] |
/device/samsung/crespo/alsa-lib/aserver/ |
aserver.c | 285 err = snd_pcm_open(&pcm, client->name, client->stream, SND_PCM_NONBLOCK);
|
/device/samsung/crespo/alsa-utils/speaker-test/ |
speaker-test.c | 948 while ((err = snd_pcm_open(&handle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) {
|
/device/samsung/crespo/alsa-lib/include/ |
pcm.h | 408 int snd_pcm_open(snd_pcm_t **pcm, const char *name, [all...] |
/device/samsung/crespo/alsa-lib/src/pcm/ |
pcm_share.c | [all...] |
pcm.c | 124 \a mode argument in #snd_pcm_open() function. 140 mode for #snd_pcm_open() function and 150 The PCM device is in the open state. After the #snd_pcm_open() open call, 488 is passed to #snd_pcm_open() or #snd_pcm_open_lconf(). 643 * identifier specified in snd_pcm_open(). 2223 int snd_pcm_open(snd_pcm_t **pcmp, const char *name, function [all...] |
/device/samsung/crespo/alsa-utils/aplay/ |
aplay.c | 588 err = snd_pcm_open(&handle, pcm_name, stream, open_mode); [all...] |