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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
io.py 53 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
63 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
_pyio.py 31 class BlockingIOError(IOError):
598 BlockingIOError if the underlying raw stream is in non-blocking
621 Raises BlockingIOError if the underlying raw stream has no
638 Raises BlockingIOError if the underlying raw stream has no
659 Raises BlockingIOError if the buffer is full and the
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
_pyio.py 32 class BlockingIOError(IOError):
601 BlockingIOError if the underlying raw stream is in non-blocking
624 Raises BlockingIOError if the underlying raw stream has no
641 Raises BlockingIOError if the underlying raw stream has no
662 Raises BlockingIOError if the buffer is full and the
727 # may raise BlockingIOError or BrokenPipeError etc
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
_pyio.py 32 class BlockingIOError(IOError):
601 BlockingIOError if the underlying raw stream is in non-blocking
624 Raises BlockingIOError if the underlying raw stream has no
641 Raises BlockingIOError if the underlying raw stream has no
662 Raises BlockingIOError if the buffer is full and the
727 # may raise BlockingIOError or BrokenPipeError etc
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
_pyio.py 32 class BlockingIOError(IOError):
601 BlockingIOError if the underlying raw stream is in non-blocking
624 Raises BlockingIOError if the underlying raw stream has no
641 Raises BlockingIOError if the underlying raw stream has no
662 Raises BlockingIOError if the buffer is full and the
727 # may raise BlockingIOError or BrokenPipeError etc
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
_pyio.py 32 class BlockingIOError(IOError):
601 BlockingIOError if the underlying raw stream is in non-blocking
624 Raises BlockingIOError if the underlying raw stream has no
641 Raises BlockingIOError if the underlying raw stream has no
662 Raises BlockingIOError if the buffer is full and the
727 # may raise BlockingIOError or BrokenPipeError etc
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
  /external/python/cpython2/Lib/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
_pyio.py 33 class BlockingIOError(IOError):
610 BlockingIOError if the underlying raw stream is in non-blocking
633 Raises BlockingIOError if the underlying raw stream has no
650 Raises BlockingIOError if the underlying raw stream has no
669 Raises BlockingIOError if the buffer is full and the
734 # may raise BlockingIOError or BrokenPipeError etc
    [all...]
  /external/python/cpython3/Lib/
io.py 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
socket.py 303 except BlockingIOError:
354 except BlockingIOError:
522 except (BlockingIOError, InterruptedError):
asynchat.py 118 except BlockingIOError:
_pyio.py 37 BlockingIOError = BlockingIOError
630 BlockingIOError if the underlying raw stream is in non-blocking
653 Raises BlockingIOError if the underlying raw stream has no
672 Raises BlockingIOError if the underlying raw stream has no
683 Raises BlockingIOError if the underlying raw stream has no
710 Raises BlockingIOError if the buffer is full and the
775 # may raise BlockingIOError or BrokenPipeError etc
    [all...]
  /external/python/cpython3/Lib/asyncio/
selector_events.py 147 except BlockingIOError:
184 except (BlockingIOError, InterruptedError, ConnectionAbortedError):
383 except (BlockingIOError, InterruptedError):
420 except (BlockingIOError, InterruptedError):
457 except (BlockingIOError, InterruptedError):
482 except (BlockingIOError, InterruptedError):
515 except (BlockingIOError, InterruptedError):
725 except (BlockingIOError, InterruptedError):
763 except (BlockingIOError, InterruptedError):
786 except (BlockingIOError, InterruptedError)
    [all...]
windows_utils.py 68 except (BlockingIOError, InterruptedError):
  /external/python/cpython3/Lib/test/
test_exception_hierarchy.py 54 +-- BlockingIOError EAGAIN, EALREADY, EWOULDBLOCK, EINPROGRESS
150 e = BlockingIOError(*args[:n])
153 e = BlockingIOError("a", "b", 3)
  /external/python/cpython3/Lib/test/test_asyncio/
test_selector_events.py 164 self.loop._ssock.recv.side_effect = BlockingIOError
172 self.loop._csock.send.side_effect = BlockingIOError
213 sock.recv.side_effect = BlockingIOError
273 sock.send.side_effect = BlockingIOError
349 sock.connect.side_effect = BlockingIOError
413 sock.connect.side_effect = BlockingIOError
497 sock.accept.side_effect = BlockingIOError
871 self.sock.recv.side_effect = BlockingIOError
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_io.py 233 raise self.BlockingIOError(0, "test blocking", n)
238 BlockingIOError = io.BlockingIOError
241 BlockingIOError = pyio.BlockingIOError
    [all...]
  /external/python/cpython3/Objects/
exceptions.c 823 /* BlockingIOError's 3rd argument can be the number of
    [all...]
  /external/python/cpython2/Lib/test/
test_io.py 253 BlockingIOError = io.BlockingIOError
256 BlockingIOError = pyio.BlockingIOError
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_io.py 249 BlockingIOError = io.BlockingIOError
252 BlockingIOError = pyio.BlockingIOError
    [all...]

Completed in 709 milliseconds

1 2