/third_party/gn/src/gn/ |
H A D | function_exec_script.cc | 30 const SourceFileSet* whitelist = build_settings->exec_script_whitelist(); in CheckExecScriptPermissions() local 31 if (!whitelist) in CheckExecScriptPermissions() 32 return true; // No whitelist specified, don't check. in CheckExecScriptPermissions() 38 if (whitelist->find(function_range.begin().file()->name()) != in CheckExecScriptPermissions() 39 whitelist->end()) in CheckExecScriptPermissions() 56 "if you need to modify the whitelist."); in CheckExecScriptPermissions()
|
H A D | ohos_components_checker.cc | 189 std::unique_ptr<base::Value> whitelist = base::JSONReader::ReadAndReturnError(whitelistContent,
in LoadWhitelist() local 191 if (!whitelist) {
in LoadWhitelist() 194 if (!whitelist->GetAsDictionary(&whitelist_dict)) {
in LoadWhitelist()
|
H A D | setup.cc | 1154 std::unique_ptr<SourceFileSet> whitelist = 1160 whitelist->insert(current_dir.ResolveRelativeFile(item, err)); 1165 build_settings_.set_exec_script_whitelist(std::move(whitelist));
|
/third_party/ffmpeg/libavformat/ |
H A D | protocols.c | 119 const URLProtocol **ffurl_get_protocols(const char *whitelist, in ffurl_get_protocols() argument 132 if (whitelist && *whitelist && !av_match_name(up->name, whitelist)) in ffurl_get_protocols()
|
H A D | url.h | 147 const char *whitelist, const char* blacklist, 334 * Construct a list of protocols matching a given whitelist and/or blacklist. 336 * @param whitelist a comma-separated list of allowed protocol names or NULL. If 346 const URLProtocol **ffurl_get_protocols(const char *whitelist,
|
H A D | avio.c | 182 av_log(uc, AV_LOG_ERROR, "Protocol '%s' not on whitelist '%s'!\n", uc->prot->name, uc->protocol_whitelist); in ffurl_connect() 192 av_log(uc, AV_LOG_DEBUG, "Setting default whitelist '%s'\n", uc->prot->default_whitelist); in ffurl_connect() 198 av_log(uc, AV_LOG_DEBUG, "No default whitelist set\n"); // This should be an error once all declare a default whitelist in ffurl_connect() 308 const char *whitelist, const char* blacklist, in ffurl_open_whitelist() 331 av_assert0(!whitelist || in ffurl_open_whitelist() 333 !strcmp(whitelist, e->value)); in ffurl_open_whitelist() 338 if ((ret = av_dict_set(options, "protocol_whitelist", whitelist, 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 D | avio_internal.h | 227 const char *whitelist, const char *blacklist);
|
H A D | aviobuf.c | 1230 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() 1228 ffio_open_whitelist(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist ) ffio_open_whitelist() argument
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_ocr.c | 34 char *whitelist; member 46 { "whitelist", "set character whitelist", OFFSET(whitelist), AV_OPT_TYPE_STRING, {.str="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.:;,-+_!?\"'[]{}()<>|/\\=*&%$#@!~ "}, 0, 0, FLAGS }, 61 if (!TessBaseAPISetVariable(s->tess, "tessedit_char_whitelist", s->whitelist)) { in init() 62 av_log(ctx, AV_LOG_ERROR, "failed to set whitelist\n"); in init()
|
/third_party/alsa-utils/alsactl/ |
H A D | daemon.c | 43 struct id_list whitelist; member 83 free_list(&c->whitelist); in card_free() 224 if (in_list(&card->whitelist, id)) in check_lists() 231 add_to_list(&card->whitelist, id); in check_lists() 256 remove_from_list(&card->whitelist, id); in card_events() 261 remove_from_list(&card->whitelist, id); in card_events()
|
/third_party/libabigail/src/ |
H A D | abg-tools-utils.cc | 2041 /// Generate a suppression specification from kernel abi whitelist 2044 /// A kernel ABI whitelist file is an INI file that usually has only 2046 /// with the sub-string "whitelist". For instance 2053 /// A whitelist file can have multiple sections (adhering to the naming 2055 /// is created takes all whitelist sections from all files into account. 2063 /// @param abi_whitelist_paths a vector of KMI whitelist paths 2079 abigail::ini::config whitelist; in gen_suppr_spec_from_kernel_abi_whitelists() local 2080 if (!read_config(*path_iter, whitelist)) in gen_suppr_spec_from_kernel_abi_whitelists() 2084 whitelist.get_sections(); in gen_suppr_spec_from_kernel_abi_whitelists() 2093 if (!string_ends_with(section_name, "whitelist")) in gen_suppr_spec_from_kernel_abi_whitelists() [all...] |