Home | History | Annotate | Download | only in control

Lines Matching defs:str2

146 	char *str1, *str2, *res;
153 if (get_dev_name1(list, &str2, device, 0) < 0) {
158 if (str1 != NULL || str2 != NULL) {
159 if (str1 != NULL && str2 != NULL) {
160 if (strcmp(str1, str2) == 0) {
161 res = malloc(strlen(list->cardname) + strlen(str2) + 3);
165 strcat(res, str2);
168 res = malloc(strlen(list->cardname) + strlen(str2) + strlen(str1) + 6);
172 strcat(res, str2);
177 free(str2);
182 str2 = "Input";
184 str1 = str2;
185 str2 = "Output";
196 strcat(res, str2);