Lines Matching defs:result

334 give the same result:
1166 const char *id, int len, snd_config_t **result)
1177 if (result)
1178 *result = n;
2633 * An \e empty compound node with its join flag set would result in no
2687 * An \e empty compound node with its join flag set would result in no
3394 * \return The same value as the result of the \c strcmp function, i.e.,
3443 #define SND_CONFIG_SEARCH(config, key, result, extra_code) \
3461 return _snd_config_search(config, key, -1, result); \
3465 #define SND_CONFIG_SEARCHA(root, config, key, result, fcn, extra_code) \
3488 return _snd_config_search(config, key, -1, result); \
3492 #define SND_CONFIG_SEARCHV(config, result, fcn) \
3497 va_start(arg, result); \
3511 if (result) \
3512 *result = n; \
3516 #define SND_CONFIG_SEARCHVA(root, config, result, fcn) \
3521 va_start(arg, result); \
3535 if (result) \
3536 *result = n; \
3540 #define SND_CONFIG_SEARCH_ALIAS(config, base, key, result, fcn1, fcn2) \
3580 if (result) \
3581 *result = res; \
3591 * \param[out] result When \a result != \c NULL, the function puts the
3593 * by \a result.
3627 int snd_config_search(snd_config_t *config, const char *key, snd_config_t **result)
3629 SND_CONFIG_SEARCH(config, key, result, );
3638 * \param[out] result When \a result != \c NULL, the function puts the
3640 * by \a result.
3653 * snd_config_searcha(root, config, "a.b.c.d", &result);
3682 int snd_config_searcha(snd_config_t *root, snd_config_t *config, const char *key, snd_config_t **result)
3684 SND_CONFIG_SEARCHA(root, config, key, result, snd_config_searcha, );
3690 * \param[out] result When \a result != \c NULL, the function puts the
3692 * by \a result.
3718 int snd_config_searchv(snd_config_t *config, snd_config_t **result, ...)
3720 SND_CONFIG_SEARCHV(config, result, snd_config_search);
3728 * \param[out] result When \a result != \c NULL, the function puts the
3730 * by \a result.
3747 int snd_config_searchva(snd_config_t *root, snd_config_t *config, snd_config_t **result, ...)
3749 SND_CONFIG_SEARCHVA(root, config, result, snd_config_searcha);
3757 * \param[out] result When \a result != \c NULL, the function puts the
3759 * by \a result.
3780 snd_config_t **result)
3782 SND_CONFIG_SEARCH_ALIAS(config, base, key, result,
3793 * \param[out] result The function puts the handle to the node found at
3794 * the address specified by \a result.
3810 int snd_config_search_hooks(snd_config_t *config, const char *key, snd_config_t **result)
3812 SND_CONFIG_SEARCH(config, key, result, \
3826 * \param[out] result The function puts the handle to the node found at
3827 * the address specified by \a result.
3843 int snd_config_searcha_hooks(snd_config_t *root, snd_config_t *config, const char *key, snd_config_t **result)
3845 SND_CONFIG_SEARCHA(root, config, key, result,
3859 * \param[out] result The function puts the handle to the node found at
3860 * the address specified by \a result.
3880 snd_config_t **result, ...)
3882 SND_CONFIG_SEARCHVA(root, config, result, snd_config_searcha_hooks);
3891 * \param[out] result The function puts the handle to the node found at
3892 * the address specified by \a result.
3910 snd_config_t **result)
3912 SND_CONFIG_SEARCH_ALIAS(config, base, key, result,
5223 * \param result Must be \c NULL.
5230 snd_config_t *private_data, snd_config_t **result)
5233 assert(result == NULL);
5234 return snd_config_walk(config, root, result, _snd_config_evaluate, NULL, private_data);
5640 * \param[out] result The function puts the handle to the result
5642 * \a result.
5649 * The resulting copy of \a config is returned in \a result.
5655 snd_config_t **result)
5665 *result = res;
5675 * \param[out] result The function puts the handle to the result
5677 * \a result.
5684 * The resulting copy of \a config is returned in \a result.
5687 snd_config_t *private_data, snd_config_t **result)
5731 *result = res;
5745 * \param[out] result The function puts the handle to the expanded found
5746 * node at the address specified by \a result.
5756 * In any case, \a result is a new node that must be freed by the
5770 snd_config_t **result)
5794 err = snd_config_expand(conf, config, args, NULL, result);