/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/ |
D | gencodec.py | 132 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/ |
D | trace.py | 578 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 …]
|
D | asyncore.py | 359 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):
|
D | shutil.py | 103 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)))
|
D | filecmp.py | 149 except os.error, why: 154 except os.error, why:
|
D | asynchat.py | 111 except socket.error, why:
|
D | codecs.py | 16 except ImportError, why: 17 raise SystemError('Failed to load the builtin codecs: %s' % why)
|
D | platform.py | 508 except os.error,why: 511 except IOError,why:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ceval.c | 698 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/ |
D | ceval.c | 696 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/ |
D | shutil.py | 104 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)))
|
D | codecs.py | 16 except ImportError, why: 17 raise SystemError('Failed to load the builtin codecs: %s' % why)
|
D | platform.py | 508 except os.error,why: 511 except IOError,why:
|
/device/huawei/angler/sepolicy/ |
D | kernel.te | 1 # TODO - root cause why the kernel generating this denial.
|
/device/lge/bullhead/sepolicy/ |
D | kernel.te | 1 # TODO - root cause why the kernel generating this denial.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/ |
D | freeze.py | 148 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/ |
D | spark.py | 500 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/ |
D | faqwiz.py | 31 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/ |
D | test_parser.py | 19 except parser.ParserError, why: 20 self.fail("could not roundtrip %r: %s" % (s, why))
|
D | test_sys_settrace.py | 439 def g(frame, why, extra): argument 440 if (why == 'line' and
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lundump.c | 30 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/ |
D | CommandLine.py | 436 except getopt.error,why: 437 self.help(why)
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/ |
D | b.bat | 43 @REM The reset vector is caught by the mask ROM in the OMAP 3530 so that is why this entry
|
D | ba.bat | 43 @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/ |
D | NOTES.msvc | 64 I don't know why this is happenning, since you haven't changed that part of
|