Home
last modified time | relevance | path

Searched refs:blacklist (Results 1 - 25 of 25) sorted by relevance

/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/
H A DMetadataFilterTest.java40 // If this behavior changes then consider whether the change in the blacklist is intended, or you
44 TreeMap<String, TreeSet<String>> blacklist = new TreeMap<String, TreeSet<String>>(); in testForLiteBuild()
45 blacklist.put("fixedLine", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
46 blacklist.put("mobile", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
47 blacklist.put("tollFree", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
48 blacklist.put("premiumRate", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
49 blacklist.put("sharedCost", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
50 blacklist.put("personalNumber", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
51 blacklist.put("voip", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild()
52 blacklist in testForLiteBuild()
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-switch-on-connect.c49 "blacklist=<regex, ignore matching devices> "
55 "blacklist",
62 char *blacklist; member
89 /* Ignore sinks matching the blacklist regex */ in sink_put_hook_callback()
90 if (u->blacklist && (pa_match(u->blacklist, sink->name) > 0)) { in sink_put_hook_callback()
149 /* Ignore sources matching the blacklist regex */ in source_put_hook_callback()
150 if (u->blacklist && (pa_match(u->blacklist, source->name) > 0)) { in source_put_hook_callback()
211 u->blacklist in pa__init()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dblacklist.c2 * wpa_supplicant - Temporary BSSID blacklist
13 #include "blacklist.h"
16 * wpa_blacklist_get - Get the blacklist entry for a BSSID
19 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
29 e = wpa_s->blacklist; in wpa_blacklist_get()
41 * wpa_blacklist_add - Add an BSSID to the blacklist
43 * @bssid: BSSID to be added to the blacklist
44 * Returns: Current blacklist count on success, -1 on failure
46 * This function adds the specified BSSID to the blacklist or increases the
47 * blacklist coun
[all...]
H A Dnmake.mak117 $(OBJDIR)\blacklist.obj \
H A Dwpa_supplicant_i.h626 struct wpa_blacklist *blacklist; member
629 * extra_blacklist_count - Sum of blacklist counts after last connection
632 * failures (maximum number for any BSS) over blacklist clear
634 * failures prior to the last blacklist clear operation which happens
H A Devents.c34 #include "blacklist.h"
1167 /* check blacklist */ in wpa_scan_res_match()
1478 if (selected == NULL && wpa_s->blacklist && in wpa_supplicant_pick_network()
1481 "blacklist and try again"); in wpa_supplicant_pick_network()
H A Dctrl_iface.c52 #include "blacklist.h"
2419 e = wpa_s->blacklist; in wpa_supplicant_ctrl_iface_blacklist()
/third_party/nghttp2/
H A Dmkcipherlist.py16 blacklist = [ variable
298 if name not in blacklist:
322 if len(found) != len(blacklist):
324 len(found), len(blacklist),
325 found.symmetric_difference(blacklist)))
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/
H A DMetadataFilter.java43 // this changes, the blacklist handling in this class should also change.
84 private final TreeMap<String, TreeSet<String>> blacklist; field in MetadataFilter
86 // Note: If changing the blacklist here or the name of the method, update documentation about
90 // "exampleNumber" is a blacklist. in forLiteBuild()
100 // Empty blacklist, meaning we filter nothing. in emptyFilter()
105 MetadataFilter(TreeMap<String, TreeSet<String>> blacklist) { in MetadataFilter() argument
106 this.blacklist = blacklist; in MetadataFilter()
111 return blacklist.equals(((MetadataFilter) obj).blacklist); in equals()
[all...]
/third_party/ffmpeg/libavformat/
H A Dprotocols.c120 const char *blacklist) in ffurl_get_protocols()
134 if (blacklist && *blacklist && av_match_name(up->name, blacklist)) in ffurl_get_protocols()
119 ffurl_get_protocols(const char *whitelist, const char *blacklist) ffurl_get_protocols() argument
H A Durl.h147 const char *whitelist, const char* blacklist,
334 * Construct a list of protocols matching a given whitelist and/or blacklist.
339 * @param blacklist a comma-separated list of forbidden protocol names or NULL.
347 const char *blacklist);
H A Davio.c187 av_log(uc, AV_LOG_ERROR, "Protocol '%s' on blacklist '%s'!\n", uc->prot->name, uc->protocol_blacklist); in ffurl_connect()
308 const char *whitelist, const char* blacklist, in ffurl_open_whitelist()
334 av_assert0(!blacklist || in ffurl_open_whitelist()
336 !strcmp(blacklist, e->value)); in ffurl_open_whitelist()
341 if ((ret = av_dict_set(options, "protocol_blacklist", blacklist, 0)) < 0) in ffurl_open_whitelist()
306 ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char* blacklist, URLContext *parent) ffurl_open_whitelist() argument
H A Davio_internal.h227 const char *whitelist, const char *blacklist);
H A Daviobuf.c1230 const char *whitelist, const char *blacklist in ffio_open_whitelist()
1238 err = ffurl_open_whitelist(&h, filename, flags, int_cb, options, whitelist, blacklist, NULL); in ffio_open_whitelist()
/third_party/ffmpeg/libavfilter/
H A Dvf_ocr.c35 char *blacklist; member
47 { "blacklist", "set character blacklist", OFFSET(blacklist), AV_OPT_TYPE_STRING, {.str=""}, 0, 0, FLAGS },
66 if (!TessBaseAPISetVariable(s->tess, "tessedit_char_blacklist", s->blacklist)) { in init()
67 av_log(ctx, AV_LOG_ERROR, "failed to set blacklist\n"); in init()
/third_party/alsa-utils/alsactl/
H A Ddaemon.c44 struct id_list blacklist; member
82 free_list(&c->blacklist); in card_free()
222 if (in_list(&card->blacklist, id)) in check_lists()
234 add_to_list(&card->blacklist, id); in check_lists()
257 remove_from_list(&card->blacklist, id); in card_events()
262 remove_from_list(&card->blacklist, id); in card_events()
/third_party/ltp/testcases/kernel/fs/read_all/
H A Dread_all.c96 static char *blacklist[] = { variable
200 for (i = 0; i < ARRAY_SIZE(blacklist); i++) { in is_blacklisted()
201 if (blacklist[i] && !fnmatch(blacklist[i], path, FNM_EXTMATCH)) { in is_blacklisted()
698 {"e:", &blacklist[0],
/third_party/backends/backend/escl/
H A Descl_capabilities.c532 escl_capabilities(ESCL_Device *device, char *blacklist, SANE_Status *status) in escl_capabilities() argument
603 else if (blacklist) { in escl_capabilities()
606 if (strcasestr(blacklist, model)) { in escl_capabilities()
H A Descl.h237 char *blacklist,
H A Descl.c1228 char *blacklist = NULL; in _get_blacklist_pdf() local
1246 blacklist = strdup(line); in _get_blacklist_pdf()
1253 return blacklist; in _get_blacklist_pdf()
1269 char *blacklist = NULL; in sane_open() local
1294 blacklist = _get_blacklist_pdf(); in sane_open()
1295 handler->scanner = escl_capabilities(device, blacklist, &status); in sane_open()
/third_party/rust/crates/clap/src/builder/
H A Ddebug_asserts.rs215 // blacklist
216 for req in &arg.blacklist {
691 !arg.blacklist.iter().any(|x| x == arg.get_id()), in assert_arg()
H A Darg.rs60 pub(crate) blacklist: Vec<Id>,
3561 self.blacklist.push(arg_id); in conflicts_with()
3563 self.blacklist.clear(); in conflicts_with()
3614 self.blacklist.extend(names.into_iter().map(Into::into)); in conflicts_with_all()
4287 .field("blacklist", &self.blacklist) in fmt()
H A Dcommand.rs3485 for id in arg.blacklist.iter() { in get_arg_conflicts_with()
3513 arg.blacklist in get_global_arg_conflicts_with()
/third_party/rust/crates/clap/src/parser/
H A Dvalidator.rs530 let mut conf = arg.blacklist.clone(); in gather_arg_direct_conflicts()
/third_party/eudev/src/udev/
H A Dudev-rules.c1262 static const char *blacklist[] = { in add_rule() local
1277 for (i = 0; i < ELEMENTSOF(blacklist); i++) { in add_rule()
1278 if (!streq(attr, blacklist[i])) in add_rule()

Completed in 46 milliseconds