Lines Matching refs:e
948 except (EnvironmentError, KconfigError) as e:
956 sys.exit(cmd + str(e).strip())
1088 except UnicodeDecodeError as e:
1089 _decoding_error(e, self.filename)
1240 except UnicodeDecodeError as e:
1241 _decoding_error(e, filename)
1854 except EnvironmentError as e:
1855 if e.errno == errno.ENOENT:
2118 except EnvironmentError as e:
2128 e = e2
2131 e, "Could not open '{}' ({}: {}). Check that the $srctree "
2133 .format(filename, errno.errorcode[e.errno], e.strerror,
2190 except EnvironmentError as e:
2193 e, "{}:{}: Could not open '{}' (in '{}') ({}: {})"
2196 errno.errorcode[e.errno], e.strerror))
6246 def std_msg(e): argument
6253 return IOError(e.errno, e.strerror, e.filename)
6272 except EnvironmentError as e:
6275 .format(allconfig, std_msg(e)))
6717 def _decoding_error(e, filename, macro_linenr=None): argument
6731 e.encoding,
6734 e.object[max(e.start - 40, 0):e.end + 40],
6735 e.object[e.start:e.end],
6736 e.reason))
6792 except UnicodeDecodeError as e:
6793 _decoding_error(e, kconf.filename, kconf.linenr)