Lines Matching defs:str
1064 * \param str Mixer simple element ASCII representation
1066 int snd_mixer_selem_id_parse(snd_mixer_selem_id_t *dst, const char *str)
1073 while (*str == ' ' || *str == '\t')
1074 str++;
1075 if (!(*str))
1078 if (*str != '"' && *str != '\'') {
1079 while (*str && *str != ',') {
1081 *ptr++ = *str;
1084 str++;
1087 c = *str++;
1088 while (*str && *str != c) {
1090 *ptr++ = *str;
1093 str++;
1095 if (*str == c)
1096 str++;
1098 if (*str == '\0') {
1102 if (*str != ',')
1105 str++;
1106 if (str[0] < '0' || str[1] > '9')
1108 dst->index = atoi(str);