/third_party/python/PC/ |
H A D | errmap.h | 2 winerror_to_errno(int winerror) in winerror_to_errno() argument 5 if ((winerror & 0xFFFF0000) == 0x80070000) { in winerror_to_errno() 6 winerror &= 0x0000FFFF; in winerror_to_errno() 10 if (winerror >= 10000 && winerror < 12000) { in winerror_to_errno() 11 switch (winerror) { in winerror_to_errno() 19 return winerror - 10000; in winerror_to_errno() 21 return winerror; in winerror_to_errno() 25 switch (winerror) { in winerror_to_errno()
|
H A D | launcher2.c | 82 winerror(int err, wchar_t * format, ... ) in winerror() function 147 winerror(0, L"Checking process type"); in _getNativeMachine() 158 winerror(0, L"Checking process type"); in _getNativeMachine() 219 winerror(0, L"Error comparing '%.*s' and '%.*s' (compare)", xLen, x, yLen, y); in _compare() 246 winerror(0, L"Error comparing '%.*s' and '%.*s' (compareArgument)", xLen, x, yLen, y); in _compareArgument() 268 winerror(0, L"Error comparing '%.*s' and '%.*s' (comparePath)", xLen, x, yLen, y); in _comparePath() 340 winerror(0, L"Unable to load usage text"); in showHelpText() 347 winerror(0, L"Unable to preprocess usage text"); in showHelpText() 355 winerror(0, L"Unable to preprocess usage text"); in showHelpText() 799 winerror( in searchPath() [all...] |
H A D | launcher.c | 78 winerror(int rc, wchar_t * message, int size) in winerror() function 99 winerror(GetLastError(), win_message, MSGSIZE); in error() 276 winerror(status, message, MSGSIZE); in _locate_pythons_for_key() 297 winerror(status, message, MSGSIZE); in _locate_pythons_for_key() 316 winerror(status, message, MSGSIZE); in _locate_pythons_for_key() 341 winerror(GetLastError(), message, MSGSIZE); in _locate_pythons_for_key() 1783 winerror(GetLastError(), message, MSGSIZE); in process()
|
/third_party/python/Lib/asyncio/ |
H A D | windows_events.py | 143 if exc.winerror != _overlapped.ERROR_IO_PENDING: 230 if exc.winerror != _overlapped.ERROR_IO_PENDING: 473 if exc.winerror in (_overlapped.ERROR_NETNAME_DELETED, 496 if exc.winerror in (_overlapped.ERROR_NETNAME_DELETED, 516 if exc.winerror in (_overlapped.ERROR_NETNAME_DELETED, 536 if exc.winerror in (_overlapped.ERROR_NETNAME_DELETED, 554 if exc.winerror in (_overlapped.ERROR_NETNAME_DELETED, 574 if exc.winerror in (_overlapped.ERROR_NETNAME_DELETED, 624 if e.winerror != errno.WSAEINVAL: 655 if exc.winerror i [all...] |
/third_party/python/Objects/ |
H A D | exceptions.c | 1677 , PyObject **winerror in oserror_parse_args() 1689 PyObject **winerror = &_winerror; in oserror_parse_args() local 1697 filename, winerror, filename2)) in oserror_parse_args() 1700 if (*winerror && PyLong_Check(*winerror)) { in oserror_parse_args() 1705 winerrcode = PyLong_AsLong(*winerror); in oserror_parse_args() 1735 , PyObject *winerror in oserror_init() 1763 /* filename, filename2, and winerror are removed from the args tuple in oserror_init() 1781 Py_XINCREF(winerror); in oserror_init() 1782 self->winerror in oserror_init() 1825 PyObject *winerror = NULL; OSError_new() local 1892 PyObject *winerror = NULL; OSError_init() local [all...] |
/third_party/python/Lib/ctypes/test/ |
H A D | test_win32.py | 82 self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER) 91 self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER)
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_windows_utils.py | 38 self.assertEqual(e.winerror, ERROR_IO_INCOMPLETE) 76 self.assertEqual(e.winerror, 6) # ERROR_INVALID_HANDLE
|
H A D | test_windows_events.py | 149 exc.winerror = _overlapped.ERROR_PIPE_BUSY 267 if e.winerror != _overlapped.ERROR_PIPE_BUSY:
|
/third_party/skia/src/utils/win/ |
H A D | SkAutoCoInitialize.cpp | 14 #include <winerror.h>
|
/third_party/python/Lib/multiprocessing/ |
H A D | connection.py | 319 if e.winerror == _winapi.ERROR_BROKEN_PIPE: 671 if e.winerror != _winapi.ERROR_NO_DATA: 708 if e.winerror not in (_winapi.ERROR_SEM_TIMEOUT, 856 ov, err = None, e.winerror 872 err = e.winerror 889 err = e.winerror
|
/third_party/python/Lib/test/ |
H A D | test_exception_hierarchy.py | 126 self.assertIn('winerror', dir(OSError)) 128 self.assertNotIn('winerror', dir(OSError)) 137 self.assertEqual(e.winerror, None) 143 self.assertEqual(e.winerror, 183)
|
H A D | test_exceptions.py | 382 self.assertEqual(w.winerror, None) 387 self.assertEqual(w.winerror, 3) 395 self.assertEqual(w.winerror, 1001) 403 self.assertEqual(w.winerror, None) 511 'strerror' : 'strErrorStr', 'winerror' : None,
|
H A D | test_launcher.py | 114 if ex.winerror == 259:
|
H A D | test_os.py | 2100 self.assertTrue(e.winerror is None or e.winerror != 0) 2976 assert e.winerror == 2 # ERROR_FILE_NOT_FOUND
|
H A D | test_socket.py | 1278 if e.winerror == 10022: 1368 if e.winerror == 10022: 1508 if exc.winerror == WSAEOPNOTSUPP:
|
H A D | test_logging.py | 5690 if e.winerror == 5: # access denied
|
H A D | _test_multiprocessing.py | 5141 e.winerror == WSAENOTSOCK, e)
|
/third_party/python/Lib/ |
H A D | ntpath.py | 617 if ex.winerror in allowed_winerror: 653 if ex.winerror not in allowed_winerror: 709 initial_winerror = ex.winerror 732 if ex.winerror == initial_winerror:
|
H A D | pathlib.py | 40 getattr(exception, 'winerror', None) in _IGNORED_WINERRORS) 988 winerror = getattr(e, 'winerror', 0) 989 if e.errno == ELOOP or winerror == _WINERROR_CANT_RESOLVE_FILENAME:
|
/third_party/curl/lib/ |
H A D | setup-win32.h | 94 # include <winerror.h>
|
/third_party/python/Include/cpython/ |
H A D | pyerrors.h | 63 PyObject *winerror; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | ErrorHandling.cpp | 144 #include <winerror.h>
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | ErrorHandling.cpp | 236 #include <winerror.h>
|
/third_party/ffmpeg/ |
H A D | configure | 6789 test_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" &&
|