Searched refs:snd_hwdep_t (Results 1 – 5 of 5) sorted by relevance
/third_party/alsa-lib/include/ |
D | hwdep.h | 106 typedef struct _snd_hwdep snd_hwdep_t; typedef 108 int snd_hwdep_open(snd_hwdep_t **hwdep, const char *name, int mode); 109 int snd_hwdep_close(snd_hwdep_t *hwdep); 110 int snd_hwdep_poll_descriptors(snd_hwdep_t *hwdep, struct pollfd *pfds, unsigned int space); 111 int snd_hwdep_poll_descriptors_count(snd_hwdep_t *hwdep); 112 int snd_hwdep_poll_descriptors_revents(snd_hwdep_t *hwdep, struct pollfd *pfds, unsigned int nfds, … 113 int snd_hwdep_nonblock(snd_hwdep_t *hwdep, int nonblock); 114 int snd_hwdep_info(snd_hwdep_t *hwdep, snd_hwdep_info_t * info); 115 int snd_hwdep_dsp_status(snd_hwdep_t *hwdep, snd_hwdep_dsp_status_t *status); 116 int snd_hwdep_dsp_load(snd_hwdep_t *hwdep, snd_hwdep_dsp_image_t *block); [all …]
|
/third_party/alsa-lib/src/hwdep/ |
D | hwdep_local.h | 28 int (*close)(snd_hwdep_t *hwdep); 29 int (*nonblock)(snd_hwdep_t *hwdep, int nonblock); 30 int (*info)(snd_hwdep_t *hwdep, snd_hwdep_info_t *info); 31 int (*ioctl)(snd_hwdep_t *hwdep, unsigned int request, void * arg); 32 ssize_t (*write)(snd_hwdep_t *hwdep, const void *buffer, size_t size); 33 ssize_t (*read)(snd_hwdep_t *hwdep, void *buffer, size_t size); 46 int snd_hwdep_hw_open(snd_hwdep_t **handle, const char *name, int card, int device, int mode);
|
D | hwdep_hw.c | 38 static int snd_hwdep_hw_close(snd_hwdep_t *hwdep) in snd_hwdep_hw_close() 46 static int snd_hwdep_hw_nonblock(snd_hwdep_t *hwdep, int nonblock) in snd_hwdep_hw_nonblock() 61 static int snd_hwdep_hw_info(snd_hwdep_t *hwdep, snd_hwdep_info_t *info) in snd_hwdep_hw_info() 69 static int snd_hwdep_hw_ioctl(snd_hwdep_t *hwdep, unsigned int request, void * arg) in snd_hwdep_hw_ioctl() 77 static ssize_t snd_hwdep_hw_write(snd_hwdep_t *hwdep, const void *buffer, size_t size) in snd_hwdep_hw_write() 87 static ssize_t snd_hwdep_hw_read(snd_hwdep_t *hwdep, void *buffer, size_t size) in snd_hwdep_hw_read() 106 int snd_hwdep_hw_open(snd_hwdep_t **handle, const char *name, int card, int device, int mode) in snd_hwdep_hw_open() 110 snd_hwdep_t *hwdep; in snd_hwdep_hw_open() 134 hwdep = (snd_hwdep_t *) calloc(1, sizeof(snd_hwdep_t)); in snd_hwdep_hw_open() 148 int _snd_hwdep_hw_open(snd_hwdep_t **hwdep, char *name, in _snd_hwdep_hw_open()
|
D | hwdep.c | 39 static int snd_hwdep_open_conf(snd_hwdep_t **hwdep, in snd_hwdep_open_conf() 50 int (*open_func)(snd_hwdep_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; in snd_hwdep_open_conf() 145 static int snd_hwdep_open_noupdate(snd_hwdep_t **hwdep, snd_config_t *root, const char *name, int m… in snd_hwdep_open_noupdate() 169 int snd_hwdep_open(snd_hwdep_t **hwdep, const char *name, int mode) in snd_hwdep_open() 194 int snd_hwdep_open_lconf(snd_hwdep_t **hwdep, const char *name, in snd_hwdep_open_lconf() 209 int snd_hwdep_close(snd_hwdep_t *hwdep) in snd_hwdep_close() 229 const char *snd_hwdep_name(snd_hwdep_t *hwdep) in snd_hwdep_name() 242 snd_hwdep_type_t snd_hwdep_type(snd_hwdep_t *hwdep) in snd_hwdep_type() 253 int snd_hwdep_poll_descriptors_count(snd_hwdep_t *hwdep) in snd_hwdep_poll_descriptors_count() 266 int snd_hwdep_poll_descriptors(snd_hwdep_t *hwdep, struct pollfd *pfds, unsigned int space) in snd_hwdep_poll_descriptors() [all …]
|
/third_party/alsa-lib/aserver/ |
D | aserver.c | 192 snd_hwdep_t *handle;
|