Searched refs:sctl (Results 1 – 3 of 3) sorted by relevance
/third_party/alsa-lib/src/pcm/ |
D | pcm_hooks.c | 673 snd_sctl_t *sctl = NULL; in _snd_pcm_hook_ctl_elems_install() local 696 err = snd_sctl_build(&sctl, ctl, conf, pcm_conf, 0); in _snd_pcm_hook_ctl_elems_install() 700 snd_pcm_hook_ctl_elems_hw_params, sctl); in _snd_pcm_hook_ctl_elems_install() 704 snd_pcm_hook_ctl_elems_hw_free, sctl); in _snd_pcm_hook_ctl_elems_install() 708 snd_pcm_hook_ctl_elems_close, sctl); in _snd_pcm_hook_ctl_elems_install() 720 if (sctl) in _snd_pcm_hook_ctl_elems_install() 721 snd_sctl_free(sctl); in _snd_pcm_hook_ctl_elems_install()
|
/third_party/alsa-lib/src/control/ |
D | setup.c | 603 int snd_sctl_build(snd_sctl_t **sctl, snd_ctl_t *handle, snd_config_t *conf, snd_config_t *private_… in snd_sctl_build() argument 609 assert(sctl); in snd_sctl_build() 612 *sctl = NULL; in snd_sctl_build() 635 *sctl = h; in snd_sctl_build() 644 int snd_sctl_free(snd_sctl_t *sctl) in snd_sctl_free() argument 646 assert(sctl); in snd_sctl_free() 647 return free_elems(sctl); in snd_sctl_free()
|
/third_party/ejdb/src/bindings/ejdb2_flutter/lib/ |
D | ejdb2_flutter.dart | 17 void _execute(String hook, dynamic args, StreamController<JBDOC> sctl) { 28 sctl.addError(streamError, s); 30 _ecm[hook] = sctl; 39 final sctl = _ecm[qhook]; 40 if (sctl == null) { 46 sctl.add(JBDOC(data[i] as int, data[i + 1] as String)); 50 sctl.close(); 249 final sctl = StreamController<JBDOC>(onCancel: () { 253 _execute(qh, args, sctl); 254 return sctl.stream;
|