/third_party/alsa-lib/src/rawmidi/ |
H A D | rawmidi.c | 184 int (*open_func)(snd_rawmidi_t **, snd_rawmidi_t **, in snd_rawmidi_open_conf() 253 open_func = snd_dlobj_cache_get2(lib, open_name, in snd_rawmidi_open_conf() 255 if (!open_func) { in snd_rawmidi_open_conf() 261 err = open_func(inputp, outputp, name, rawmidi_root, rawmidi_conf, mode); in snd_rawmidi_open_conf() 265 (*inputp)->open_func = open_func; in snd_rawmidi_open_conf() 271 (*outputp)->open_func = open_func; in snd_rawmidi_open_conf() 279 if (open_func) in snd_rawmidi_open_conf() 280 snd_dlobj_cache_put(open_func); in snd_rawmidi_open_conf() [all...] |
H A D | rawmidi_local.h | 43 void *open_func; member
|
/third_party/alsa-lib/src/timer/ |
H A D | timer_query.c | 42 int (*open_func)(snd_timer_query_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; in snd_timer_query_open_conf() 113 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_TIMER_QUERY_DLSYM_VERSION)); in snd_timer_query_open_conf() 118 } else if (!open_func) { in snd_timer_query_open_conf() 127 err = open_func(timer, name, timer_root, timer_conf, mode); in snd_timer_query_open_conf()
|
H A D | timer.c | 85 int (*open_func)(snd_timer_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; in snd_timer_open_conf() 155 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_TIMER_DLSYM_VERSION)); in snd_timer_open_conf() 160 } else if (!open_func) { in snd_timer_open_conf() 169 err = open_func(timer, name, timer_root, timer_conf, mode); in snd_timer_open_conf()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_rate.c | 61 void *open_func; member 1279 if (rate->open_func) in snd_pcm_rate_close() 1280 snd_dlobj_cache_put(rate->open_func); in snd_pcm_rate_close() 1408 snd_pcm_rate_open_func_t open_func; in rate_open_func() local 1425 rate->open_func = open_conf_func; in rate_open_func() 1433 open_func = snd_dlobj_cache_get(lib, open_name, NULL, verbose); in rate_open_func() 1434 if (!open_func) in rate_open_func() 1437 rate->open_func = open_func; in rate_open_func() 1439 err = open_func(SND_PCM_RATE_PLUGIN_VERSIO in rate_open_func() 1505 snd_pcm_rate_open_func_t open_func; snd_pcm_rate_open() local [all...] |
H A D | pcm_meter.c | 617 int (*open_func)(snd_pcm_t *, const char *, in snd_pcm_meter_add_scope_conf() 678 open_func = h ? dlsym(h, open_name) : NULL; in snd_pcm_meter_add_scope_conf() 683 } else if (!open_func) { in snd_pcm_meter_add_scope_conf() 692 err = open_func(pcm, name, root, conf); in snd_pcm_meter_add_scope_conf()
|
H A D | pcm.c | 2573 int (*open_func)(snd_pcm_t **, const char *, in snd_pcm_open_conf() 2668 open_func = snd_dlobj_cache_get(lib, open_name, in snd_pcm_open_conf() 2670 if (open_func) { in snd_pcm_open_conf() 2671 err = open_func(pcmp, name, pcm_root, pcm_conf, stream, mode); in snd_pcm_open_conf() 2673 if ((*pcmp)->open_func) { in snd_pcm_open_conf() 2675 snd_dlobj_cache_put(open_func); in snd_pcm_open_conf() 2677 (*pcmp)->open_func = open_func; in snd_pcm_open_conf() 2681 snd_dlobj_cache_put(open_func); in snd_pcm_open_conf() 2864 snd_dlobj_cache_put(pcm->open_func); in snd_pcm_free() [all...] |
H A D | pcm_local.h | 195 void *open_func; member
|
/third_party/alsa-lib/src/hwdep/ |
H A D | hwdep.c | 50 int (*open_func)(snd_hwdep_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; in snd_hwdep_open_conf() 121 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_HWDEP_DLSYM_VERSION)); in snd_hwdep_open_conf() 126 } else if (!open_func) { in snd_hwdep_open_conf() 135 err = open_func(hwdep, name, hwdep_root, hwdep_conf, mode); in snd_hwdep_open_conf()
|
/third_party/python/Tools/iobench/ |
H A D | iobench.py | 282 def run_one_test(name, size, open_func, test_func, *args): 287 with open_func(name) as f: 291 def run_test_family(tests, mode_filter, files, open_func, *make_args): 303 open_func, test_func, *args)
|
/third_party/alsa-lib/src/control/ |
H A D | control.c | 245 snd_dlobj_cache_put(ctl->open_func); in snd_ctl_close() 1450 int (*open_func)(snd_ctl_t **, const char *, snd_config_t *, snd_config_t *, int) = NULL; in snd_ctl_open_conf() 1540 open_func = snd_dlobj_cache_get(lib, open_name, in snd_ctl_open_conf() 1542 if (open_func) { in snd_ctl_open_conf() 1543 err = open_func(ctlp, name, ctl_root, ctl_conf, mode); in snd_ctl_open_conf() 1545 (*ctlp)->open_func = open_func; in snd_ctl_open_conf() 1548 snd_dlobj_cache_put(open_func); in snd_ctl_open_conf()
|
H A D | control_local.h | 63 void *open_func; member
|
/third_party/alsa-lib/include/ |
H A D | local.h | 374 int snd_dlobj_cache_put(void *open_func);
|
/third_party/alsa-lib/src/seq/ |
H A D | seq.c | 832 int (*open_func)(snd_seq_t **, const char *, in snd_seq_open_conf() 904 open_func = snd_dlsym(h, open_name, SND_DLSYM_VERSION(SND_SEQ_DLSYM_VERSION)); in snd_seq_open_conf() 909 } else if (!open_func) { in snd_seq_open_conf() 918 err = open_func(seqp, name, seq_root, seq_conf, streams, mode); in snd_seq_open_conf()
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 1212 open_func = self._builtin_open 1213 return open_func(self.baseFilename, self.mode,
|