Lines Matching refs:output_path
278 def _open_warning_file(output_path: str):
280 _warning_file_path = os.path.join(output_path, 'hisysevent_warning.txt')
299 def _output_deprecated(output_path: str):
300 deprecated_file = open(os.path.join(output_path, 'hisysevent_deprecated.txt'), 'w+')
711 def merge_hisysevent_config(yaml_list: str, output_path: str) -> str:
712 if (len(output_path) == 0):
714 output_path = present_path
718 if not os.path.exists(output_path):
719 os.makedirs(output_path, exist_ok=True)
720 _open_warning_file(output_path)
742 _output_deprecated(output_path)
746 hisysevent_def_file = os.path.join(output_path, 'hisysevent.def')