Lines Matching defs:str
1815 const char *str;
1817 if (snd_config_get_string(sconf, &str) >= 0) {
1822 err = snd_config_search_definition(root, "pcm", str, &pcm_conf);
1824 SNDERR("Unknown slave PCM %s", str);
1850 if (snd_config_get_string(pcm_conf, &str) >= 0 &&
1852 str, &pcm_conf) >= 0) {
1868 const char *id, *str;
1872 err = snd_config_get_string(n, &str);
1877 if (strcmp(str, "hw")) {
1878 SNDERR("Invalid type '%s' for slave PCM", str);
1986 const char *str;
1987 err = snd_config_get_string(n, &str);
1992 if (strcmp(str, "no") == 0 || strcmp(str, "off") == 0)
1994 else if (strcmp(str, "roundup") == 0)
1996 else if (strcmp(str, "rounddown") == 0)
1998 else if (strcmp(str, "auto") == 0)
2001 SNDERR("The field hw_ptr_alignment is invalid : %s", str);
2008 const char *str;
2009 err = snd_config_get_string(n, &str);
2014 if (strcmp(str, "default") == 0)
2016 else if (strcmp(str, "gettimeofday") == 0)
2018 else if (strcmp(str, "monotonic") == 0)
2020 else if (strcmp(str, "monotonic_raw") == 0)
2023 SNDERR("The field tstamp_type is invalid : %s", str);