Lines Matching refs:xferi
857 struct snd_xferi xferi; in snd_pcm_hw_writei() local
858 xferi.buf = (char*) buffer; in snd_pcm_hw_writei()
859 xferi.frames = size; in snd_pcm_hw_writei()
860 xferi.result = 0; /* make valgrind happy */ in snd_pcm_hw_writei()
861 if (ioctl(fd, SNDRV_PCM_IOCTL_WRITEI_FRAMES, &xferi) < 0) in snd_pcm_hw_writei()
866 …fprintf(stderr, "hw_writei: frames = %li, xferi.result = %li, err = %i\n", size, xferi.result, err… in snd_pcm_hw_writei()
870 return xferi.result; in snd_pcm_hw_writei()
899 struct snd_xferi xferi; in snd_pcm_hw_readi() local
900 xferi.buf = buffer; in snd_pcm_hw_readi()
901 xferi.frames = size; in snd_pcm_hw_readi()
902 xferi.result = 0; /* make valgrind happy */ in snd_pcm_hw_readi()
903 if (ioctl(fd, SNDRV_PCM_IOCTL_READI_FRAMES, &xferi) < 0) in snd_pcm_hw_readi()
908 fprintf(stderr, "hw_readi: frames = %li, result = %li, err = %i\n", size, xferi.result, err); in snd_pcm_hw_readi()
912 return xferi.result; in snd_pcm_hw_readi()