Home
last modified time | relevance | path

Searched refs:snd_seq_client_pool_t (Results 1 – 16 of 16) sorted by path

/dports/astro/opencpn/OpenCPN-5.2.4/libs/glshim/spec/yml/
H A Dalsa.yml1013 snd_seq_client_pool_malloc: [int, snd_seq_client_pool_t **ptr]
1014 snd_seq_client_pool_free: [void, snd_seq_client_pool_t *ptr]
1015 snd_seq_client_pool_copy: [void, snd_seq_client_pool_t *dst, const snd_seq_client_pool_t *src]
1016 snd_seq_client_pool_get_client: [int, const snd_seq_client_pool_t *info]
1017 snd_seq_client_pool_get_output_pool: [size_t, const snd_seq_client_pool_t *info]
1018 snd_seq_client_pool_get_input_pool: [size_t, const snd_seq_client_pool_t *info]
1019 snd_seq_client_pool_get_output_room: [size_t, const snd_seq_client_pool_t *info]
1020 snd_seq_client_pool_get_output_free: [size_t, const snd_seq_client_pool_t *info]
1021 snd_seq_client_pool_get_input_free: [size_t, const snd_seq_client_pool_t *info]
1025 snd_seq_get_client_pool: [int, snd_seq_t *handle, snd_seq_client_pool_t *info]
[all …]
/dports/astro/opencpn/OpenCPN-5.2.4/libs/glshim/src/proxy/client/src/
H A Dclient.c14652 void snd_seq_client_pool_copy(snd_seq_client_pool_t * dst, const snd_seq_client_pool_t * src) { in snd_seq_client_pool_copy()
14655 packed_data.args.a1 = (snd_seq_client_pool_t *)dst; in snd_seq_client_pool_copy()
14656 packed_data.args.a2 = (snd_seq_client_pool_t *)src; in snd_seq_client_pool_copy()
14664 packed_data.args.a1 = (snd_seq_client_pool_t *)ptr; in snd_seq_client_pool_free()
14672 packed_data.args.a1 = (snd_seq_client_pool_t *)info; in snd_seq_client_pool_get_client()
14682 packed_data.args.a1 = (snd_seq_client_pool_t *)info; in snd_seq_client_pool_get_input_free()
14692 packed_data.args.a1 = (snd_seq_client_pool_t *)info; in snd_seq_client_pool_get_input_pool()
14702 packed_data.args.a1 = (snd_seq_client_pool_t *)info; in snd_seq_client_pool_get_output_free()
14712 packed_data.args.a1 = (snd_seq_client_pool_t *)info; in snd_seq_client_pool_get_output_pool()
14722 packed_data.args.a1 = (snd_seq_client_pool_t *)info; in snd_seq_client_pool_get_output_room()
[all …]
/dports/astro/opencpn/OpenCPN-5.2.4/libs/glshim/src/proxy/
H A Dproxy.h11387 …_GENPT___const_snd_seq_client_pool_t___GENPT__)(snd_seq_client_pool_t * dst, const snd_seq_client_…
11389 snd_seq_client_pool_t * a1;
11390 snd_seq_client_pool_t * a2;
11403 snd_seq_client_pool_t * a1;
11416 snd_seq_client_pool_t * a1;
11429 snd_seq_client_pool_t * a1;
11442 snd_seq_client_pool_t ** a1;
11455 snd_seq_client_pool_t * a1;
11660 snd_seq_client_pool_t * a2;
23796 #define snd_seq_client_pool_copy_ARG_EXPAND snd_seq_client_pool_t * dst, const snd_seq_client_pool_…
[all …]
/dports/audio/alsa-lib/alsa-lib-1.2.2/include/
H A Dseq.h172 typedef struct _snd_seq_client_pool snd_seq_client_pool_t; typedef
178 int snd_seq_client_pool_malloc(snd_seq_client_pool_t **ptr);
179 void snd_seq_client_pool_free(snd_seq_client_pool_t *ptr);
180 void snd_seq_client_pool_copy(snd_seq_client_pool_t *dst, const snd_seq_client_pool_t *src);
182 int snd_seq_client_pool_get_client(const snd_seq_client_pool_t *info);
183 size_t snd_seq_client_pool_get_output_pool(const snd_seq_client_pool_t *info);
184 size_t snd_seq_client_pool_get_input_pool(const snd_seq_client_pool_t *info);
185 size_t snd_seq_client_pool_get_output_room(const snd_seq_client_pool_t *info);
187 size_t snd_seq_client_pool_get_input_free(const snd_seq_client_pool_t *info);
192 int snd_seq_get_client_pool(snd_seq_t *handle, snd_seq_client_pool_t *info);
[all …]
/dports/audio/alsa-lib/alsa-lib-1.2.2/src/seq/
H A Dseq.c4648 return sizeof(snd_seq_client_pool_t); in snd_seq_client_pool_sizeof()
4656 int snd_seq_client_pool_malloc(snd_seq_client_pool_t **ptr) in snd_seq_client_pool_malloc()
4659 *ptr = calloc(1, sizeof(snd_seq_client_pool_t)); in snd_seq_client_pool_malloc()
4669 void snd_seq_client_pool_free(snd_seq_client_pool_t *obj) in snd_seq_client_pool_free()
4679 void snd_seq_client_pool_copy(snd_seq_client_pool_t *dst, const snd_seq_client_pool_t *src) in snd_seq_client_pool_copy()
4691 int snd_seq_client_pool_get_client(const snd_seq_client_pool_t *info) in snd_seq_client_pool_get_client()
4702 size_t snd_seq_client_pool_get_output_pool(const snd_seq_client_pool_t *info) in snd_seq_client_pool_get_output_pool()
4713 size_t snd_seq_client_pool_get_input_pool(const snd_seq_client_pool_t *info) in snd_seq_client_pool_get_input_pool()
4746 size_t snd_seq_client_pool_get_input_free(const snd_seq_client_pool_t *info) in snd_seq_client_pool_get_input_free()
4791 int snd_seq_get_client_pool(snd_seq_t *seq, snd_seq_client_pool_t *info) in snd_seq_get_client_pool()
[all …]
H A Dseq_hw.c349 static int snd_seq_hw_get_client_pool(snd_seq_t *seq, snd_seq_client_pool_t *info) in snd_seq_hw_get_client_pool()
359 static int snd_seq_hw_set_client_pool(snd_seq_t *seq, snd_seq_client_pool_t *info) in snd_seq_hw_set_client_pool()
H A Dseq_local.h67 int (*get_client_pool)(snd_seq_t *seq, snd_seq_client_pool_t *info);
68 int (*set_client_pool)(snd_seq_t *seq, snd_seq_client_pool_t *info);
H A Dseqmid.c268 snd_seq_client_pool_t info; in snd_seq_set_client_pool_output()
287 snd_seq_client_pool_t info; in snd_seq_set_client_pool_output_room()
306 snd_seq_client_pool_t info; in snd_seq_set_client_pool_input()
351 snd_seq_client_pool_t info; in snd_seq_sync_output_queue()
/dports/audio/drumstick/drumstick-2.5.0/library/alsa/
H A Dalsaclient.cpp2274 PoolInfo::PoolInfo(snd_seq_client_pool_t* other) in PoolInfo()
/dports/audio/drumstick/drumstick-2.5.0/library/include/drumstick/
H A Dalsaclient.h155 explicit PoolInfo(snd_seq_client_pool_t* other);
173 snd_seq_client_pool_t* m_Info;
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/alsa-sys-0.3.1/src/
H A Dgenerated.rs7570 pub type snd_seq_client_pool_t = _snd_seq_client_pool; typedef
7576 ptr: *mut *mut snd_seq_client_pool_t, in snd_seq_client_pool_malloc() argument
7580 pub fn snd_seq_client_pool_free(ptr: *mut snd_seq_client_pool_t); in snd_seq_client_pool_free() argument
7584 dst: *mut snd_seq_client_pool_t, in snd_seq_client_pool_copy() argument
7585 src: *const snd_seq_client_pool_t, in snd_seq_client_pool_copy() argument
7590 info: *const snd_seq_client_pool_t, in snd_seq_client_pool_get_client() argument
7594 pub fn snd_seq_client_pool_get_output_pool(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_output_pool()
7597 pub fn snd_seq_client_pool_get_input_pool(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_input_pool()
7606 pub fn snd_seq_client_pool_get_input_free(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_input_free()
7620 info: *mut snd_seq_client_pool_t, in snd_seq_get_client_pool() argument
[all …]
/dports/audio/rosegarden/rosegarden-21.06.1/src/sound/
H A DAlsaDriver.cpp1800 snd_seq_client_pool_t *poolInfo; in initialiseMidi()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/alsa-sys-0.1.2/src/
H A Dlib.rs815 pub enum snd_seq_client_pool_t { } enum
1917 pub fn snd_seq_client_pool_malloc(ptr: *mut *mut snd_seq_client_pool_t) -> c_int; in snd_seq_client_pool_malloc()
1918 pub fn snd_seq_client_pool_free(ptr: *mut snd_seq_client_pool_t); in snd_seq_client_pool_free() argument
1919 …pub fn snd_seq_client_pool_copy(dst: *mut snd_seq_client_pool_t, src: *const snd_seq_client_pool_t in snd_seq_client_pool_copy() argument
1920 pub fn snd_seq_client_pool_get_client(info: *const snd_seq_client_pool_t) -> c_int; in snd_seq_client_pool_get_client()
1921 pub fn snd_seq_client_pool_get_output_pool(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_output_pool()
1922 pub fn snd_seq_client_pool_get_input_pool(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_input_pool()
1923 pub fn snd_seq_client_pool_get_output_room(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_output_room()
1924 pub fn snd_seq_client_pool_get_output_free(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_output_free()
1925 pub fn snd_seq_client_pool_get_input_free(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_input_free()
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/alsa-sys-0.1.2/src/
H A Dlib.rs815 pub enum snd_seq_client_pool_t { } enum
1917 pub fn snd_seq_client_pool_malloc(ptr: *mut *mut snd_seq_client_pool_t) -> c_int; in snd_seq_client_pool_malloc()
1918 pub fn snd_seq_client_pool_free(ptr: *mut snd_seq_client_pool_t); in snd_seq_client_pool_free() argument
1919 …pub fn snd_seq_client_pool_copy(dst: *mut snd_seq_client_pool_t, src: *const snd_seq_client_pool_t in snd_seq_client_pool_copy() argument
1920 pub fn snd_seq_client_pool_get_client(info: *const snd_seq_client_pool_t) -> c_int; in snd_seq_client_pool_get_client()
1921 pub fn snd_seq_client_pool_get_output_pool(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_output_pool()
1922 pub fn snd_seq_client_pool_get_input_pool(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_input_pool()
1923 pub fn snd_seq_client_pool_get_output_room(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_output_room()
1924 pub fn snd_seq_client_pool_get_output_free(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_output_free()
1925 pub fn snd_seq_client_pool_get_input_free(info: *const snd_seq_client_pool_t) -> size_t; in snd_seq_client_pool_get_input_free()
[all …]
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/alsa-sys-0.3.1/src/
H A Dgenerated.rs7570 pub type snd_seq_client_pool_t = _snd_seq_client_pool; typedef
7576 ptr: *mut *mut snd_seq_client_pool_t, in snd_seq_client_pool_malloc() argument
7580 pub fn snd_seq_client_pool_free(ptr: *mut snd_seq_client_pool_t); in snd_seq_client_pool_free() argument
7584 dst: *mut snd_seq_client_pool_t, in snd_seq_client_pool_copy() argument
7585 src: *const snd_seq_client_pool_t, in snd_seq_client_pool_copy() argument
7590 info: *const snd_seq_client_pool_t, in snd_seq_client_pool_get_client() argument
7594 pub fn snd_seq_client_pool_get_output_pool(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_output_pool()
7597 pub fn snd_seq_client_pool_get_input_pool(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_input_pool()
7606 pub fn snd_seq_client_pool_get_input_free(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_input_free()
7620 info: *mut snd_seq_client_pool_t, in snd_seq_get_client_pool() argument
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/alsa-sys/src/
H A Dgenerated.rs7570 pub type snd_seq_client_pool_t = _snd_seq_client_pool; typedef
7576 ptr: *mut *mut snd_seq_client_pool_t, in snd_seq_client_pool_malloc() argument
7580 pub fn snd_seq_client_pool_free(ptr: *mut snd_seq_client_pool_t); in snd_seq_client_pool_free() argument
7584 dst: *mut snd_seq_client_pool_t, in snd_seq_client_pool_copy() argument
7585 src: *const snd_seq_client_pool_t, in snd_seq_client_pool_copy() argument
7590 info: *const snd_seq_client_pool_t, in snd_seq_client_pool_get_client() argument
7594 pub fn snd_seq_client_pool_get_output_pool(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_output_pool()
7597 pub fn snd_seq_client_pool_get_input_pool(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_input_pool()
7606 pub fn snd_seq_client_pool_get_input_free(info: *const snd_seq_client_pool_t) -> usize; in snd_seq_client_pool_get_input_free()
7620 info: *mut snd_seq_client_pool_t, in snd_seq_get_client_pool() argument
[all …]