Home
last modified time | relevance | path

Searched refs:why (Results 1 – 25 of 39) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
Dgencodec.py132 except TypeError, why:
133 print '* failed to convert %r: %s' % (t, why)
393 except ValueError, why:
394 print '* conversion failed: %s' % why
414 except ValueError, why:
415 print '* conversion failed: %s' % why
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtrace.py578 def globaltrace_trackcallers(self, frame, why, arg): argument
583 if why == 'call':
589 def globaltrace_countfuncs(self, frame, why, arg): argument
594 if why == 'call':
598 def globaltrace_lt(self, frame, why, arg): argument
604 if why == 'call':
621 def localtrace_trace_and_count(self, frame, why, arg): argument
622 if why == "line":
636 def localtrace_trace(self, frame, why, arg): argument
637 if why == "line":
[all …]
Dasyncore.py359 except socket.error as why:
360 if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
371 except socket.error, why:
372 if why.args[0] == EWOULDBLOCK:
374 elif why.args[0] in _DISCONNECTED:
390 except socket.error, why:
392 if why.args[0] in _DISCONNECTED:
404 except socket.error, why:
405 if why.args[0] not in (ENOTCONN, EBADF):
Dshutil.py103 except OSError, why:
105 why.errno != errno.EOPNOTSUPP):
194 except EnvironmentError, why:
195 errors.append((srcname, dstname, str(why)))
198 except OSError, why:
199 if WindowsError is not None and isinstance(why, WindowsError):
203 errors.extend((src, dst, str(why)))
Dfilecmp.py149 except os.error, why:
154 except os.error, why:
Dasynchat.py111 except socket.error, why:
Dcodecs.py16 except ImportError, why:
17 raise SystemError('Failed to load the builtin codecs: %s' % why)
Dplatform.py508 except os.error,why:
511 except IOError,why:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dceval.c698 register enum why_code why; /* Reason for block stack unwind */ in PyEval_EvalFrameEx() local
950 why = WHY_NOT; in PyEval_EvalFrameEx()
956 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1002 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1034 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1815 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1847 why = do_raise(w, v, u); in PyEval_EvalFrameEx()
1852 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1868 why = WHY_RETURN; in PyEval_EvalFrameEx()
1874 why = WHY_YIELD; in PyEval_EvalFrameEx()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dceval.c696 register enum why_code why; /* Reason for block stack unwind */ in PyEval_EvalFrameEx() local
948 why = WHY_NOT; in PyEval_EvalFrameEx()
954 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1000 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1031 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1812 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1844 why = do_raise(w, v, u); in PyEval_EvalFrameEx()
1849 why = WHY_EXCEPTION; in PyEval_EvalFrameEx()
1865 why = WHY_RETURN; in PyEval_EvalFrameEx()
1871 why = WHY_YIELD; in PyEval_EvalFrameEx()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dshutil.py104 except OSError, why:
106 if hasattr(errno, err) and why.errno == getattr(errno, err):
197 except EnvironmentError, why:
198 errors.append((srcname, dstname, str(why)))
201 except OSError, why:
202 if WindowsError is not None and isinstance(why, WindowsError):
206 errors.append((src, dst, str(why)))
Dcodecs.py16 except ImportError, why:
17 raise SystemError('Failed to load the builtin codecs: %s' % why)
Dplatform.py508 except os.error,why:
511 except IOError,why:
/device/huawei/angler/sepolicy/
Dkernel.te1 # TODO - root cause why the kernel generating this denial.
/device/lge/bullhead/sepolicy/
Dkernel.te1 # TODO - root cause why the kernel generating this denial.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
Dfreeze.py148 except IOError, why:
150 "can not be read - %s" % (sys.argv[pos+1], why) )
336 except ValueError, why:
337 usage(why)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dspark.py500 why = (item, i, rule)
503 i, pptr, why)
562 why = (item, i, rule)
572 self.links[key].append((pptr, why))
643 why = self.causal(key)
644 attr[i] = self.buildTree(sym, why[0],
645 tokens, why[1])
646 item, k = self.predecessor(key, why)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
Dfaqwiz.py31 def __init__(self, file, why=None): argument
33 self.why = why
799 except IOError, why:
800 self.error(CANTWRITE, file=file, why=why)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_parser.py19 except parser.ParserError, why:
20 self.fail("could not roundtrip %r: %s" % (s, why))
Dtest_sys_settrace.py439 def g(frame, why, extra): argument
440 if (why == 'line' and
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlundump.c30 static l_noret error(LoadState* S, const char* why) in error() argument
32 luaO_pushfstring(S->L,"%s: %s precompiled chunk",S->name,why); in error()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DCommandLine.py436 except getopt.error,why:
437 self.help(why)
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/
Db.bat43 @REM The reset vector is caught by the mask ROM in the OMAP 3530 so that is why this entry
Dba.bat43 @REM The reset vector is caught by the mask ROM in the OMAP 3530 so that is why this entry
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DNOTES.msvc64 I don't know why this is happenning, since you haven't changed that part of

12