Lines Matching refs:strs
57 if (strstr(name, sel->blacklist.strs[i]))
62 if (strstr(name, sel->whitelist.strs[i]))
427 free((void *)set->strs[i]);
428 free(set->strs);
433 char *input, *state = NULL, *next, **tmp, **strs = NULL;
441 set->strs = NULL;
444 tmp = realloc(strs, sizeof(*strs) * (cnt + 1));
447 strs = tmp;
449 strs[cnt] = strdup(next);
450 if (!strs[cnt])
457 set->strs = (const char **)strs;
461 free(strs);