sound_device      117 src/sound.c    struct sound_device;
sound_device      206 src/sound.c      void (* open) (struct sound_device *sd);
sound_device      209 src/sound.c      void (* close) (struct sound_device *sd);
sound_device      212 src/sound.c      void (* configure) (struct sound_device *device);
sound_device      215 src/sound.c      void (* choose_format) (struct sound_device *sd,
sound_device      220 src/sound.c      ptrdiff_t (* period_size) (struct sound_device *sd);
sound_device      223 src/sound.c      void (* write) (struct sound_device *sd, const char *buffer,
sound_device      260 src/sound.c      void (* play) (struct sound *s, struct sound_device *sd);
sound_device      266 src/sound.c    static struct sound_device *current_sound_device;
sound_device      271 src/sound.c    static void vox_write (struct sound_device *, const char *, ptrdiff_t);
sound_device      273 src/sound.c    static void wav_play (struct sound *, struct sound_device *);
sound_device      275 src/sound.c    static void au_play (struct sound *, struct sound_device *);
sound_device      543 src/sound.c    wav_play (struct sound *s, struct sound_device *sd)
sound_device      642 src/sound.c    au_play (struct sound *s, struct sound_device *sd)
sound_device      689 src/sound.c    vox_open (struct sound_device *sd)
sound_device      702 src/sound.c    vox_configure (struct sound_device *sd)
sound_device      764 src/sound.c    vox_close (struct sound_device *sd)
sound_device      801 src/sound.c    vox_choose_format (struct sound_device *sd, struct sound *s)
sound_device      844 src/sound.c    vox_init (struct sound_device *sd)
sound_device      868 src/sound.c    vox_write (struct sound_device *sd, const char *buffer, ptrdiff_t nbytes)
sound_device      903 src/sound.c    alsa_open (struct sound_device *sd)
sound_device      924 src/sound.c    alsa_period_size (struct sound_device *sd)
sound_device      932 src/sound.c    alsa_configure (struct sound_device *sd)
sound_device     1051 src/sound.c    alsa_close (struct sound_device *sd)
sound_device     1072 src/sound.c    alsa_choose_format (struct sound_device *sd, struct sound *s)
sound_device     1126 src/sound.c    alsa_write (struct sound_device *sd, const char *buffer, ptrdiff_t nbytes)
sound_device     1184 src/sound.c    alsa_init (struct sound_device *sd)