Searched refs:check_file (Results 1 – 3 of 3) sorted by relevance
/build/scripts/ |
D | interface_mgr.py | 74 check_file = os.path.join(sig_file_gen_dir, module_name, 76 file_dir = os.path.dirname(os.path.abspath(check_file)) 82 with open(check_file, 'w') as output_file: 118 check_file = os.path.join(check_file_dir, subsystem_name, module_name, 120 if not os.path.isfile(check_file): 123 format(subsystem_name, module_name, check_file)) 126 with open(check_file, 'r') as f:
|
/build/ohos/update/ |
D | check_abi_and_copy_deps.py | 83 def check_debug_info(check_file: str, readelf: str): 84 out = subprocess.Popen([readelf, "-S", check_file], shell=False, stdout=subprocess.PIPE) 99 check_file = get_value_from_file("deps_data", element, "source_path") 100 if not os.path.exists(check_file): 101 raise Exception("File " + check_file + " not exists!") 102 has_debug_info = check_debug_info(check_file, readelf) 107 check_file = os.path.join(stripped_dir, source) 108 if not os.path.exists(check_file): 109 raise Exception("File " + check_file + " not exists!") 112 ret = subprocess.call([abidw, "--out-file", out_file, check_file])
|
/build/test/example/ |
D | test_build_option.py | 282 flag_res, expect_dict = self.get_common_flags(option, check_file=True) 614 def get_common_flags(para_value, check_file=False): argument 617 if check_file:
|