Lines Matching defs:err
30 int err, morehelp, result = EXIT_SUCCESS;
59 err = snd_pcm_open(&phandle, pname, SND_PCM_STREAM_PLAYBACK, 0);
60 if (err < 0) {
61 fprintf(stderr, "Playback PCM open error: %s\n", snd_strerror(err));
68 err = snd_pcm_open(&chandle, cname, SND_PCM_STREAM_CAPTURE, 0);
69 if (err < 0) {
72 fprintf(stderr, "Capture PCM open error: %s\n", snd_strerror(err));
78 err = sndo_mixer_open_pcm(&handle, phandle, chandle, NULL);
79 if (err < 0) {
80 fprintf(stderr, "mixer open error: %s\n", snd_strerror(err));