Home
last modified time | relevance | path

Searched refs:winerror (Results 1 - 24 of 24) sorted by relevance

/third_party/python/PC/
H A Derrmap.h2 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 Dlauncher2.c82 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 Dlauncher.c78 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 Dwindows_events.py143 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 Dexceptions.c1677 , 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 Dtest_win32.py82 self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER)
91 self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER)
/third_party/python/Lib/test/test_asyncio/
H A Dtest_windows_utils.py38 self.assertEqual(e.winerror, ERROR_IO_INCOMPLETE)
76 self.assertEqual(e.winerror, 6) # ERROR_INVALID_HANDLE
H A Dtest_windows_events.py149 exc.winerror = _overlapped.ERROR_PIPE_BUSY
267 if e.winerror != _overlapped.ERROR_PIPE_BUSY:
/third_party/skia/src/utils/win/
H A DSkAutoCoInitialize.cpp14 #include <winerror.h>
/third_party/python/Lib/multiprocessing/
H A Dconnection.py319 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 Dtest_exception_hierarchy.py126 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 Dtest_exceptions.py382 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 Dtest_launcher.py114 if ex.winerror == 259:
H A Dtest_os.py2100 self.assertTrue(e.winerror is None or e.winerror != 0)
2976 assert e.winerror == 2 # ERROR_FILE_NOT_FOUND
H A Dtest_socket.py1278 if e.winerror == 10022:
1368 if e.winerror == 10022:
1508 if exc.winerror == WSAEOPNOTSUPP:
H A Dtest_logging.py5690 if e.winerror == 5: # access denied
H A D_test_multiprocessing.py5141 e.winerror == WSAENOTSOCK, e)
/third_party/python/Lib/
H A Dntpath.py617 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 Dpathlib.py40 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 Dsetup-win32.h94 # include <winerror.h>
/third_party/python/Include/cpython/
H A Dpyerrors.h63 PyObject *winerror; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DErrorHandling.cpp144 #include <winerror.h>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DErrorHandling.cpp236 #include <winerror.h>
/third_party/ffmpeg/
H A Dconfigure6789 test_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" &&

Completed in 63 milliseconds