Lines Matching defs:array
38 data description like nesting and array assignments.</P>
131 Opening and closing brackets indicate a single array definition. The
293 Arguments are defined using the id (key) \c \@args and array values containing
1627 int array);
1632 int err, array;
1650 array = snd_config_is_array(n);
1651 snd_output_putc(out, array ? '[' : '{');
1653 err = _snd_config_save_children(n, out, level + 1, 0, array);
1657 snd_output_putc(out, array ? ']' : '}');
1675 int array)
1690 if (!array) {
1833 * \brief Returns if the compound is an array (and count of items).
1835 * \return A count of items in array, zero when the compound is not an array,
2294 int err, array;
2301 array = snd_config_is_array(dst);
2302 if (array && snd_config_is_array(src))
2303 return _snd_config_array_merge(dst, src, array);
3430 int array = snd_config_is_array(config);
3431 return _snd_config_save_children(config, out, 0, 0, array);