HomeSort by relevance Sort by last modified time
    Searched refs:winerror (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/python/cpython2/PC/
errmap.h 2 int winerror_to_errno(int winerror)
4 switch(winerror) {
  /external/python/cpython3/PC/
errmap.h 2 int winerror_to_errno(int winerror)
4 switch(winerror) {
launcher.c 68 winerror(int rc, wchar_t * message, int size) function
88 winerror(GetLastError(), win_message, MSGSIZE);
223 winerror(status, message, MSGSIZE);
236 winerror(status, message, MSGSIZE);
246 winerror(status, message, MSGSIZE);
263 winerror(GetLastError(), message, MSGSIZE);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
objerror.h 6 #include <winerror.h>
scode.h 8 #include <winerror.h>
sperror.h 14 #include <winerror.h>
rpc.h 88 #include <winerror.h>
mapicode.h 9 #include <winerror.h>
ratings.h 12 #include <winerror.h>
sherrors.h 12 #include <winerror.h>
  /external/skia/src/utils/win/
SkAutoCoInitialize.cpp 14 #include <winerror.h>
  /external/skqp/src/utils/win/
SkAutoCoInitialize.cpp 14 #include <winerror.h>
  /external/python/cpython3/Objects/
exceptions.c 747 , PyObject **winerror
759 PyObject **winerror = &_winerror; local
767 filename, winerror, filename2))
770 if (*winerror && PyLong_Check(*winerror)) {
775 winerrcode = PyLong_AsLong(*winerror);
812 , PyObject *winerror
840 /* filename, filename2, and winerror are removed from the args tuple
858 Py_XINCREF(winerror);
859 self->winerror = winerror
902 PyObject *winerror = NULL; local
969 PyObject *winerror = NULL; local
    [all...]
  /external/python/cpython3/Lib/ctypes/test/
test_win32.py 86 e = WinError(ERROR_INVALID_PARAMETER)
89 self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER)
93 raise WinError()
98 self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER)
  /external/python/cpython3/Lib/test/test_asyncio/
test_windows_utils.py 88 self.assertEqual(e.winerror, ERROR_IO_INCOMPLETE)
126 self.assertEqual(e.winerror, 6) # ERROR_INVALID_HANDLE
test_windows_events.py 98 exc.winerror = _overlapped.ERROR_PIPE_BUSY
  /external/python/cpython3/Lib/test/
test_exception_hierarchy.py 124 self.assertIn('winerror', dir(OSError))
126 self.assertNotIn('winerror', dir(OSError))
135 self.assertEqual(e.winerror, None)
141 self.assertEqual(e.winerror, 183)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
exceptions.c 839 Py_CLEAR(self->winerror);
857 Py_VISIT(self->winerror);
875 /* Set errno to the POSIX errno, and winerror to the Win32
882 Py_CLEAR(self->winerror);
883 self->winerror = self->myerrno;
921 if (self->winerror) {
922 Py_INCREF(self->winerror);
923 PyTuple_SET_ITEM(tuple, 0, self->winerror);
945 else if (self->winerror && self->strerror) {
959 if (self->winerror) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
exceptions.c 838 Py_CLEAR(self->winerror);
856 Py_VISIT(self->winerror);
874 /* Set errno to the POSIX errno, and winerror to the Win32
881 Py_CLEAR(self->winerror);
882 self->winerror = self->myerrno;
920 if (self->winerror) {
921 Py_INCREF(self->winerror);
922 PyTuple_SET_ITEM(tuple, 0, self->winerror);
944 else if (self->winerror && self->strerror) {
958 if (self->winerror) {
    [all...]
  /external/python/cpython2/Objects/
exceptions.c 833 Py_CLEAR(self->winerror);
851 Py_VISIT(self->winerror);
869 /* Set errno to the POSIX errno, and winerror to the Win32
876 Py_XSETREF(self->winerror, self->myerrno);
914 if (self->winerror) {
915 Py_INCREF(self->winerror);
916 PyTuple_SET_ITEM(tuple, 0, self->winerror);
938 else if (self->winerror && self->strerror) {
952 if (self->winerror) {
953 Py_INCREF(self->winerror);
    [all...]
  /external/python/cpython3/Lib/asyncio/
windows_events.py 134 if exc.winerror != _overlapped.ERROR_IO_PENDING:
221 if exc.winerror != _overlapped.ERROR_IO_PENDING:
444 if exc.winerror == _overlapped.ERROR_NETNAME_DELETED:
463 if exc.winerror == _overlapped.ERROR_NETNAME_DELETED:
505 if e.winerror != errno.WSAEINVAL:
550 if exc.winerror != _overlapped.ERROR_PIPE_BUSY:
  /external/python/cpython3/Lib/multiprocessing/
connection.py 320 if e.winerror == _winapi.ERROR_BROKEN_PIPE:
656 if e.winerror != _winapi.ERROR_NO_DATA:
693 if e.winerror not in (_winapi.ERROR_SEM_TIMEOUT,
837 ov, err = None, e.winerror
853 err = e.winerror
870 err = e.winerror
  /external/llvm/lib/Support/
ErrorHandling.cpp 144 #include <winerror.h>
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
ErrorHandling.cpp 144 #include <winerror.h>
  /system/core/fastboot/
usb_windows.cpp 30 #include <winerror.h>

Completed in 382 milliseconds

1 2 3