Lines Matching refs:os
20 import os
37 "log_file": os.path.join(LIB_GEN_FOLDER, "./gen/logs/unreachable.txt"),
41 "log_file": os.path.join(LIB_GEN_FOLDER, "./gen/logs/skip.txt"),
45 "log_file": os.path.join(LIB_GEN_FOLDER, "./gen/logs/generated_yamls.txt"),
52 "yaml_file": os.path.join(LIB_GEN_FOLDER, "./gen/headers/allEnums.yaml"),
56 "yaml_file": os.path.join(LIB_GEN_FOLDER, "./gen/headers/pathsToHeaders.yaml"),
76 headers_path = os.path.join(LIB_GEN_FOLDER, "./gen/headers")
77 if not os.path.exists(headers_path):
78 os.makedirs(headers_path)
86 os.path.basename(yaml_file)
91 logs_path = os.path.join(LIB_GEN_FOLDER, "./gen/logs")
92 if not os.path.exists(logs_path):
93 os.makedirs(logs_path)
98 with os.fdopen(os.open(value["log_file"], os.O_WRONLY | os.O_CREAT, mode=511), "w", encoding="utf-8") as f: