sound             116 src/sound.c    struct sound;
sound             216 src/sound.c                              struct sound *s);
sound             260 src/sound.c      void (* play) (struct sound *s, struct sound_device *sd);
sound             267 src/sound.c    static struct sound *current_sound;
sound             272 src/sound.c    static bool wav_init (struct sound *);
sound             273 src/sound.c    static void wav_play (struct sound *, struct sound_device *);
sound             274 src/sound.c    static bool au_init (struct sound *);
sound             275 src/sound.c    static void au_play (struct sound *, struct sound_device *);
sound             357 src/sound.c    parse_sound (Lisp_Object sound, Lisp_Object *attrs)
sound             360 src/sound.c      if (!CONSP (sound) || !EQ (XCAR (sound), Qsound))
sound             363 src/sound.c      sound = XCDR (sound);
sound             364 src/sound.c      attrs[SOUND_FILE] = plist_get (sound, QCfile);
sound             365 src/sound.c      attrs[SOUND_DATA] = plist_get (sound, QCdata);
sound             366 src/sound.c      attrs[SOUND_DEVICE] = plist_get (sound, QCdevice);
sound             367 src/sound.c      attrs[SOUND_VOLUME] = plist_get (sound, QCvolume);
sound             435 src/sound.c    find_sound_type (struct sound *s)
sound             508 src/sound.c    wav_init (struct sound *s)
sound             543 src/sound.c    wav_play (struct sound *s, struct sound_device *sd)
sound             616 src/sound.c    au_init (struct sound *s)
sound             642 src/sound.c    au_play (struct sound *s, struct sound_device *sd)
sound             801 src/sound.c    vox_choose_format (struct sound_device *sd, struct sound *s)
sound            1072 src/sound.c    alsa_choose_format (struct sound_device *sd, struct sound *s)
sound            1361 src/sound.c      (Lisp_Object sound)
sound            1372 src/sound.c      if (!parse_sound (sound, attrs))
sound            1419 src/sound.c      CALLN (Frun_hook_with_args, Qplay_sound_functions, sound);
sound            1446 src/sound.c      CALLN (Frun_hook_with_args, Qplay_sound_functions, sound);
sound            6688 src/w32fns.c     (Lisp_Object sound)
sound            6690 src/w32fns.c     CHECK_SYMBOL (sound);
sound            6692 src/w32fns.c     if (NILP (sound))
sound            6694 src/w32fns.c     else if (EQ (sound, intern ("asterisk")))
sound            6696 src/w32fns.c     else if (EQ (sound, intern ("exclamation")))
sound            6698 src/w32fns.c     else if (EQ (sound, intern ("hand")))
sound            6700 src/w32fns.c     else if (EQ (sound, intern ("question")))
sound            6702 src/w32fns.c     else if (EQ (sound, intern ("ok")))
sound            6704 src/w32fns.c     else if (EQ (sound, intern ("silent")))
sound            6709 src/w32fns.c     return sound;