/device/samsung/crespo/alsa-lib/src/ |
dlmisc.c | 204 int snd_dlobj_cache_add(const char *name, void *dlobj, void *open_func) 223 c->func = open_func;
|
/device/samsung/crespo/alsa-lib/src/timer/ |
timer_query.c | 48 int (*open_func)(snd_timer_query_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; 119 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_TIMER_QUERY_DLSYM_VERSION)); 124 } else if (!open_func) { 133 err = open_func(timer, name, timer_root, timer_conf, mode);
|
timer.c | 90 int (*open_func)(snd_timer_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; 160 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_TIMER_DLSYM_VERSION)); 165 } else if (!open_func) { 174 err = open_func(timer, name, timer_root, timer_conf, mode);
|
/device/samsung/crespo/alsa-lib/src/hwdep/ |
hwdep.c | 50 int (*open_func)(snd_hwdep_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; 120 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_HWDEP_DLSYM_VERSION)); 125 } else if (!open_func) { 134 err = open_func(hwdep, name, hwdep_root, hwdep_conf, mode);
|
/device/samsung/crespo/alsa-lib/src/rawmidi/ |
rawmidi.c | 172 int (*open_func)(snd_rawmidi_t **, snd_rawmidi_t **, 243 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_RAWMIDI_DLSYM_VERSION)); 248 } else if (!open_func) { 257 err = open_func(inputp, outputp, name, rawmidi_root, rawmidi_conf, mode);
|
/device/samsung/crespo/alsa-lib/src/pcm/ |
pcm_rate.c | 1266 snd_pcm_rate_open_func_t open_func; local 1316 snd_pcm_rate_open_func_t open_func; local [all...] |
pcm_meter.c | 607 int (*open_func)(snd_pcm_t *, const char *, 668 open_func = h ? dlsym(h, open_name) : NULL; 673 } else if (!open_func) { 682 err = open_func(pcm, name, root, conf);
|
pcm.c | [all...] |
/device/samsung/crespo/alsa-lib/include/ |
local.h | 266 int snd_dlobj_cache_add(const char *name, void *dlobj, void *open_func);
|
/device/samsung/crespo/alsa-lib/src/control/ |
control.c | 774 int (*open_func)(snd_ctl_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; 864 open_func = snd_dlobj_cache_lookup(open_name); 865 if (open_func) { 871 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_CONTROL_DLSYM_VERSION)); 876 } else if (!open_func) { 885 err = open_func(ctlp, name, ctl_root, ctl_conf, mode); 888 snd_dlobj_cache_add(open_name, h, open_func); [all...] |
/device/samsung/crespo/alsa-lib/src/seq/ |
seq.c | 832 int (*open_func)(snd_seq_t **, const char *, [all...] |