Lines Matching refs:in_file
29 def headerType(in_file):
30 with open(in_file, 'r') as fd_in:
112 def write_config(in_file, out_file, flag):
113 with codecs.open(out_file, 'a+') as fd_out, open(in_file) as fd_in:
165 def kconfig2macro(in_file, out_file, flag):
166 header_type = headerType(in_file)
174 ret = write_config(in_file, out_file, flag)
192 in_file = ".config"
212 in_file = arg
220 if os.path.exists(in_file) == False:
221 logging.info("config input file <%s> doesn't exist", in_file)
224 return kconfig2macro(in_file, out_file, flag)