Home
last modified time | relevance | path

Searched refs:check_file (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/build/ohos/update/
H A Dcheck_abi_and_copy_deps.py83 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])
/ohos5.0/build/scripts/
H A Dinterface_mgr.py74 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:
109 check_file = os.path.join(check_file_dir, subsystem_name, module_name,
111 if not os.path.isfile(check_file):
114 format(subsystem_name, module_name, check_file))
117 with open(check_file, 'r') as f:
/ohos5.0/build/test/example/
H A Dtest_build_option.py508 def get_common_flags(para_value, check_file=False): argument
511 if check_file:
1124 flag_res, expect_dict = self.get_common_flags(option, check_file=True)