Lines Matching refs:key2

350 			    const char *key2, snd_config_t **result)  in conf_get_by_keys()  argument
359 if (key2) in conf_get_by_keys()
360 ret = snd_config_search(root, key2, &root); in conf_get_by_keys()
366 snd_config_t *conf_get_subtree(snd_config_t *root, const char *key1, const char *key2) in conf_get_subtree() argument
372 ret = conf_get_by_keys(root, key1, key2, &root); in conf_get_subtree()
376 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); in conf_get_subtree()
380 int conf_get_count(snd_config_t *root, const char *key1, const char *key2) in conf_get_count() argument
388 ret = conf_get_by_keys(root, key1, key2, &cfg); in conf_get_count()
392 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); in conf_get_count()
394 ksft_exit_fail_msg("key '%s'.'%s' is not a compound\n", key1, key2); in conf_get_count()
401 const char *conf_get_string(snd_config_t *root, const char *key1, const char *key2, const char *def) in conf_get_string() argument
409 ret = conf_get_by_keys(root, key1, key2, &cfg); in conf_get_string()
413 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); in conf_get_string()
415 ksft_exit_fail_msg("key '%s'.'%s' is not a string\n", key1, key2); in conf_get_string()
419 long conf_get_long(snd_config_t *root, const char *key1, const char *key2, long def) in conf_get_long() argument
427 ret = conf_get_by_keys(root, key1, key2, &cfg); in conf_get_long()
431 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); in conf_get_long()
433 ksft_exit_fail_msg("key '%s'.'%s' is not an integer\n", key1, key2); in conf_get_long()
437 int conf_get_bool(snd_config_t *root, const char *key1, const char *key2, int def) in conf_get_bool() argument
444 ret = conf_get_by_keys(root, key1, key2, &cfg); in conf_get_bool()
448 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); in conf_get_bool()
451 ksft_exit_fail_msg("key '%s'.'%s' is not an bool\n", key1, key2); in conf_get_bool()
455 void conf_get_string_array(snd_config_t *root, const char *key1, const char *key2, in conf_get_string_array() argument
462 ret = conf_get_by_keys(root, key1, key2, &cfg); in conf_get_string_array()
466 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); in conf_get_string_array()