Lines Matching refs:blacklist
49 "blacklist=<regex, ignore matching devices> "
55 "blacklist",
62 char *blacklist;
89 /* Ignore sinks matching the blacklist regex */
90 if (u->blacklist && (pa_match(u->blacklist, sink->name) > 0)) {
149 /* Ignore sources matching the blacklist regex */
150 if (u->blacklist && (pa_match(u->blacklist, source->name) > 0)) {
211 u->blacklist = pa_xstrdup(pa_modargs_get_value(ma, "blacklist", DEFAULT_BLACKLIST));
214 if (!*u->blacklist) {
215 pa_xfree(u->blacklist);
216 u->blacklist = NULL;
219 if (u->blacklist != NULL && !pa_is_regex_valid(u->blacklist)) {
220 pa_log_error("A blacklist pattern was provided but is not a valid regex");
221 pa_xfree(u->blacklist);
245 if (u->blacklist)
246 pa_xfree(u->blacklist);