/external/qemu/distrib/sdl-1.2.12/src/audio/bsd/ |
SDL_bsdaudio.h | 34 int audio_fd; member in struct:SDL_PrivateAudioData 51 #define audio_fd (this->hidden->audio_fd) macro
|
/external/qemu/distrib/sdl-1.2.12/src/audio/dsp/ |
SDL_dspaudio.h | 34 int audio_fd; member in struct:SDL_PrivateAudioData 46 #define audio_fd (this->hidden->audio_fd) macro
|
/external/qemu/distrib/sdl-1.2.12/src/audio/esd/ |
SDL_esdaudio.h | 34 int audio_fd; member in struct:SDL_PrivateAudioData 50 #define audio_fd (this->hidden->audio_fd) macro
|
/external/qemu/distrib/sdl-1.2.12/src/audio/paudio/ |
SDL_paudio.h | 34 int audio_fd; member in struct:SDL_PrivateAudioData 50 #define audio_fd (this->hidden->audio_fd) macro
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
SDL_audiodev.c | 53 int audio_fd; local 73 audio_fd = open(audiodev, flags, 0); 76 if ( (audio_fd < 0) && (SDL_strlen(audiodev) < (sizeof(audiopath)-3)) ) { 87 audio_fd = open(audiopath, flags, 0); 89 } while ( exists && (audio_fd < 0) ); 96 return(audio_fd); 129 int audio_fd; local 138 audio_fd = open(audiodev, flags, 0); 143 return audio_fd; 149 int audio_fd; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/dma/ |
SDL_dmaaudio.h | 34 int audio_fd; member in struct:SDL_PrivateAudioData 51 #define audio_fd (this->hidden->audio_fd) macro
|
/external/qemu/distrib/sdl-1.2.12/src/audio/nto/ |
SDL_nto_audio.h | 42 int audio_fd; member in struct:SDL_PrivateAudioData 60 #define audio_fd (this->hidden->audio_fd) macro
|
/external/qemu/distrib/sdl-1.2.12/src/audio/sun/ |
SDL_sunaudio.h | 34 int audio_fd; member in struct:SDL_PrivateAudioData 46 #define audio_fd (this->hidden->audio_fd) macro
|
/external/quake/quake/src/QW/client/ |
snd_linux.c | 13 int audio_fd; variable 33 audio_fd = open("/dev/dsp", O_RDWR); 34 if (audio_fd < 0) 41 rc = ioctl(audio_fd, SNDCTL_DSP_RESET, 0); 46 close(audio_fd); 50 if (ioctl(audio_fd, SNDCTL_DSP_GETCAPS, &caps)==-1) 54 close(audio_fd); 61 close(audio_fd); 65 if (ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &info)==-1) 69 close(audio_fd); [all...] |
/external/quake/quake/src/WinQuake/ |
snd_linux.cpp | 32 int audio_fd; variable 52 audio_fd = open("/dev/dsp", O_RDWR); 53 if (audio_fd < 0) 60 rc = ioctl(audio_fd, SNDCTL_DSP_RESET, 0); 65 close(audio_fd); 69 if (ioctl(audio_fd, SNDCTL_DSP_GETCAPS, &caps)==-1) 73 close(audio_fd); 80 close(audio_fd); 84 if (ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &info)==-1) 88 close(audio_fd); [all...] |
snd_sun.cpp | 33 int audio_fd; variable 65 audio_fd = open("/dev/audio", O_WRONLY|O_NDELAY); 67 if (audio_fd < 0) { 76 if (ioctl(audio_fd, AUDIO_GETINFO, &info) < 0) { 79 close(audio_fd); 86 if (fcntl(audio_fd, F_SETFL, O_NONBLOCK) < 0) { 88 close(audio_fd); 102 if (ioctl(audio_fd, AUDIO_SETINFO, &info) < 0) { 107 if (ioctl(audio_fd, AUDIO_SETINFO, &info) < 0) { 109 close(audio_fd); [all...] |
/external/bluetooth/hcidump/parser/ |
parser.h | 49 int audio_fd; member in struct:frame 104 int audio_fd; member in struct:parser_t 111 int pppdump_fd, int audio_fd);
|
/external/bluetooth/hcidump/src/ |
hcidump.c | 280 frm.audio_fd = parser.audio_fd; 907 int opt, pppdump_fd = -1, audio_fd = -1; local 1033 audio_fd = open_file(audio_file, AUDIO, flags); 1038 init_parser(flags, filter, defpsm, defcompid, pppdump_fd, audio_fd); 1044 init_parser(flags, filter, defpsm, defcompid, pppdump_fd, audio_fd); 1056 init_parser(flags, filter, defpsm, defcompid, pppdump_fd, audio_fd);
|