Searched refs:whitelist (Results 1 - 3 of 3) sorted by relevance
/build/hb/util/post_gn/ |
H A D | check_compilation_parameters.py | 25 def parse_cflags(line, cflags_check_list, whitelist): 28 if flag.startswith('-Wno-') and flag not in whitelist: 35 def parse_ldflags(line, ldflags_check_list, whitelist): 38 if flag in ldflags_check_list and flag not in whitelist: 45 whitelist, ldflags_check_list, cflags_check_list = read_check_list(root_path) 49 flag = parse_cflags(line, cflags_check_list, whitelist) 51 flag = parse_ldflags(line, ldflags_check_list, whitelist) 82 whitelist = file_json.get('whitelist') 85 return whitelist, ldflags_check_lis [all...] |
/build/tools/component_tools/static_check/ |
H A D | csct.py | 39 whitelist = () variable in CsctGlobal 46 self.whitelist = tuple() 140 self.whitelist = self.handle_white_dir(self.check_path) 145 gn_errs = CheckGn(self.ohos_root, black_dir=self.whitelist,
|
/build/toolchain/ |
H A D | gcc_solink_wrapper.py | 123 parser.add_argument('--strip-debug-whitelist', 124 help='The strip debug whitelist, lines of which are names of shared objects with .symtab kept.', 201 with open(args.strip_debug_whitelist, 'r') as whitelist: 202 for strip_debug_sofile in whitelist.readlines():
|
Completed in 2 milliseconds