Home
last modified time | relevance | path

Searched refs:WinError (Results 1 – 8 of 8) sorted by relevance

/third_party/e2fsprogs/lib/ext2fs/
Dnt_io.c261 ULONG WinError; member
319 IN ULONG WinError in _MapDosError() argument
330 if (WinError == ErrorTable[i].WinError) in _MapDosError()
340 if ((WinError >= ERROR_WRITE_PROTECT) && in _MapDosError()
341 (WinError <= ERROR_SHARING_BUFFER_EXCEEDED)) in _MapDosError()
345 else if ((WinError >= ERROR_INVALID_STARTING_CODESEG) && in _MapDosError()
346 (WinError <= ERROR_INFLOOP_IN_RELOC_CHAIN)) in _MapDosError()
/third_party/python/Lib/ctypes/test/
Dtest_win32.py79 e = WinError(ERROR_INVALID_PARAMETER)
86 raise WinError()
Dtest_funcptr.py94 raise WinError()
/third_party/python/Lib/ctypes/
D__init__.py474 def WinError(code=None, descr=None): function
/third_party/python/Lib/test/support/
D__init__.py223 raise ctypes.WinError()
232 raise ctypes.WinError()
/third_party/python/Doc/library/
Dctypes.rst491 ... raise WinError()
505 ``WinError`` is a function which will call Windows ``FormatMessage()`` api to
507 ``WinError`` takes an optional error code parameter, if no one is used, it calls
1331 :exc:`OSError` error is raised with the message *"[WinError 126] The
1781 >>> from ctypes import POINTER, WINFUNCTYPE, windll, WinError
1800 ... raise WinError()
1814 ... raise WinError()
2030 .. function:: WinError(code=None, descr=None)
/third_party/boost/libs/chrono/doc/
Dchrono.qbk7313 * [@http://svn.boost.org/trac/boost/ticket/7081 #7081] WinError.h capitalization in boost/detail/wi…
/third_party/python/Misc/
DHISTORY5774 - Issue #16169: Fix ctypes.WinError()'s confusion between errno and winerror.